Unverified Commit 10faa762 authored by Hong Minhee's avatar Hong Minhee
Browse files

Fix dangling links in docs

[ci skip]
parent 1ec8cf7b
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -260,12 +260,14 @@ jobs:
          EXTRA_NAV_TEXT=Unstable \
          EXTRA_NAV_LINK="$UNSTABLE_DOCS_URL" \
          SITEMAP_HOSTNAME="$STABLE_DOCS_URL" \
          JSR_REF_VERSION=stable \
          bun run build
        else
          bun add -Df --no-cache @fedify/fedify@dev
          EXTRA_NAV_TEXT=Stable \
          EXTRA_NAV_LINK="$STABLE_DOCS_URL" \
          SITEMAP_HOSTNAME="$UNSTABLE_DOCS_URL" \
          JSR_REF_VERSION=unstable \
          bun run build
        fi
      env:
+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@ import { withMermaid } from "vitepress-plugin-mermaid";

const jsrRefPlugin = await jsrRef({
  package: "@fedify/fedify",
  version: "unstable",
  version: process.env.JSR_REF_VERSION ?? "unstable",
  cachePath: ".jsr-cache.json",
});

+3 −4
Original line number Diff line number Diff line
@@ -431,8 +431,7 @@ federation.setInboxListeners("/{identifier}/inbox", "/inbox")
> probably won't trust the forwarded activity.[^2]
>
> If you don't want to forward unsigned activities, you can turn on
> the `~ForwardActivityOptions.skipIfUnsigned` option in
> the `~InboxContext.forwardActivity()` method:
> the `skipIfUnsigned` option in the `~InboxContext.forwardActivity()` method:
>
> ~~~~ typescript twoslash
> import { type InboxContext } from "@fedify/fedify";
+1 −1
Original line number Diff line number Diff line
@@ -256,7 +256,7 @@ Handle the `~MessageQueueEnqueueOptions.delay` option if provided in
`MessageQueueEnqueueOptions`.  Ensure the method is non-blocking
(use async operations where necessary).

### Implement `~MessageQueue.enqueueMany()` method (optional)
### Implement `~MessageQueue.enqueueMany` method (optional)

*This API is available since Fedify 1.5.0.*