From c984c8a35af7f15a19ca317dd0b1e430822193c4 Mon Sep 17 00:00:00 2001 From: Steve Date: Sun, 24 May 2026 15:17:57 +0000 Subject: [PATCH] chore: updated verifying.mdx --- docs/docs/pages/verifying.mdx | 14 +++++++++++++- 1 file(s) changed, 13 insertion(s)(+), 1 deletion(s)(-) diff --git a/docs/docs/pages/verifying.mdx b/docs/docs/pages/verifying.mdx --- a/docs/docs/pages/verifying.mdx +++ b/docs/docs/pages/verifying.mdx @@ -21,7 +21,7 @@ The content of that link tag needs to be the AT URI for the record we just published on your PDS, and an optional publication URI for enhanced links in Bluesky posts if enabled. There are two ways you can handle these: -- `sequoia inject` (recommended) - By running this command after publishing, and after building the site with your SSG, Sequoia will inject the link tags into your finished HTML. +- `sequoia inject` - By running this command after publishing, and after building the site with your SSG, Sequoia will inject the link tags into your finished HTML. This way you don't have to manually edit it or mess with an SSG config to set it up. Just deploy the build folder after you have run `sequoia inject`! @@ -31,6 +31,18 @@ This approach gives you full control over the HTML files but will take a bit more skill. :::code-group + + ```html [Astro] + --- + import type { SiteMeta } from "@/data/siteMeta"; + import siteConfig from "@/site-config"; + type Props = SiteMeta; + const { title, description, ogImage, articleDate, atUri } = Astro.props; + --- + + + {atUri && } + ``` ```html [Hugo] -- tangled.sh