Skip to content

Commit f6dcbe8

Browse files
authored
Fix broken anchors (#183)
1 parent 1b14eb6 commit f6dcbe8

File tree

5 files changed

+9
-7
lines changed

5 files changed

+9
-7
lines changed

docs/explanation/agent-internals.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ Once connected, an agent will receive chunks of audio as [`AgentRequest.TrackDat
7171

7272
### Step 4. Disconnecting from the Room
7373

74-
An agent disconnects from the room by closing the WebSocket connection created in [Step 2](#step-2.-connecting-to-the-room).
75-
It may reconnect using the same token it provided in [Step 2](#step-2.-connecting-to-the-room).
74+
An agent disconnects from the room by closing the WebSocket connection created in [Step 2](#step-2-connecting-to-the-room).
75+
It may reconnect using the same token it provided in [Step 2](#step-2-connecting-to-the-room).
7676

7777
## Peer subscriptions
7878

docs/tutorials/agents.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ If you are using the server SDKs, then creating an agent and defining its behavi
183183

184184
</Tabs>
185185

186-
If you are using Fishjam's REST API directly, then check out this [Agent Internals section](../explanation/agent-internals#rest-api).
186+
If you are using Fishjam's REST API directly, then check out this [Agent Internals section](../explanation/agent-internals#step-1-creating-an-agent-in-fishjam).
187187

188188
## Pricing
189189

docusaurus.config.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,9 @@ const config: Config = {
134134
projectName: "documentation",
135135

136136
onBrokenLinks: "throw",
137-
onBrokenMarkdownLinks: "warn",
137+
onBrokenMarkdownLinks: "throw",
138+
onBrokenAnchors: "throw",
139+
onDuplicateRoutes: "throw",
138140

139141
// Even if you don't use internationalization, you can use this field to set
140142
// useful metadata like html lang. For example, if your site is Chinese, you

versioned_docs/version-0.21.0/explanation/agent-internals.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ Once connected, an agent will receive chunks of audio as [`AgentRequest.TrackDat
7171

7272
### Step 4. Disconnecting from the Room
7373

74-
An agent disconnects from the room by closing the WebSocket connection created in [Step 2](#step-2.-connecting-to-the-room).
75-
It may reconnect using the same token it provided in [Step 2](#step-2.-connecting-to-the-room).
74+
An agent disconnects from the room by closing the WebSocket connection created in [Step 2](#step-2-connecting-to-the-room).
75+
It may reconnect using the same token it provided in [Step 2](#step-2-connecting-to-the-room).
7676

7777
## Peer subscriptions
7878

versioned_docs/version-0.21.0/tutorials/agents.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ If you are using the server SDKs, then creating an agent and defining its behavi
183183

184184
</Tabs>
185185

186-
If you are using Fishjam's REST API directly, then check out this [Agent Internals section](../explanation/agent-internals#rest-api).
186+
If you are using Fishjam's REST API directly, then check out this [Agent Internals section](../explanation/agent-internals#step-1-creating-an-agent-in-fishjam).
187187

188188
## Pricing
189189

0 commit comments

Comments
 (0)