Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: renamed 'snippets' to 'partials' for consistency #417

Merged
merged 1 commit into from
Nov 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
title: Add a streaming payments counter
---

import NoPay from '/src/snippets/glitchNoPay.mdx'
import ViewAs from '/src/snippets/glitchViewAs.mdx'
import NoPay from '/src/partials/glitchNoPay.mdx'
import ViewAs from '/src/partials/glitchViewAs.mdx'

Web Monetization allows you to know exactly how much a web monetized visitor has sent to you. In cases where a web monetized visitor has chosen to pay you in time-based increments (such as per second or per minute), a streaming payments counter can be a helpful tool to show your visitor how much they've sent. The amount updates in real time as more payments come in during the session.

Expand Down
4 changes: 2 additions & 2 deletions src/content/docs/docs/guides/provide-exclusive-content.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
title: Provide exclusive content
---

import NoPay from '/src/snippets/glitchNoPay.mdx'
import ViewAs from '/src/snippets/glitchViewAs.mdx'
import NoPay from '/src/partials/glitchNoPay.mdx'
import ViewAs from '/src/partials/glitchViewAs.mdx'

Give your paying visitors access to exclusive content when the `monetization` event fires. Since the `monetization` event only fires when an outgoing payment request is successfully created, your exclusive content only appears to web monetized visitors.

Expand Down
4 changes: 2 additions & 2 deletions src/content/docs/docs/guides/remove-ads.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
title: Remove ads
---

import NoPay from '/src/snippets/glitchNoPay.mdx'
import ViewAs from '/src/snippets/glitchViewAs.mdx'
import NoPay from '/src/partials/glitchNoPay.mdx'
import ViewAs from '/src/partials/glitchViewAs.mdx'

Give your web monetized visitors an ad-free experience by hiding ads when the `monetization` event fires. Since the `monetization` event only fires when an outgoing payment request is successfully created, your ads will continue to appear to non-web monetized visitors.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: Set up probabilistic revenue sharing
---

import NoPay from '/src/snippets/glitchNoPay.mdx'
import NoPay from '/src/partials/glitchNoPay.mdx'

How do you share a portion of a web monetized page's earnings when a monetization `<link>` element only supports one wallet address as its `href` value?

Expand Down
File renamed without changes.
File renamed without changes.