Skip to content

Commit 758904a

Browse files
authored
docs: Fix more broken links (#1436)
1 parent 4bc6ae7 commit 758904a

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

docs/src/API Reference/API Reference/models/Internal/active_voice_state.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@
1818
{ .annotate }
1919

2020
1. This connects the bot to the author's voice channel if we are not already connected
21-
2. Check out the [Voice Support Guide](/Guides/22 Voice.html) for more info on audio playback
21+
2. Check out the [Voice Support Guide](interactions.py/Guides/23 Voice/) for more info on audio playback
2222

2323
::: interactions.models.internal.active_voice_state

docs/src/Guides/01 Getting Started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,4 +110,4 @@ Congratulations! You now have a basic understanding of this library.
110110
If you have any questions check out our other guides, or join the
111111
--8<-- "discord_inv.md"
112112

113-
For more examples, check out the [examples page](/Guides/90 Example)
113+
For more examples, check out the [examples page](/interactions.py/Guides/90 Example)

docs/src/Guides/03 Creating Commands.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -519,4 +519,4 @@ There also is `on_command` which you can overwrite too. That fires on every inte
519519

520520
If your bot is complex enough, you might find yourself wanting to use custom models in your commands.
521521

522-
To do this, you'll want to use a string option, and define a converter. Information on how to use converters can be found [on the converter page](/Guides/08 Converters).
522+
To do this, you'll want to use a string option, and define a converter. Information on how to use converters can be found [on the converter page](/interactions.py/Guides/08 Converters/).

docs/src/Guides/100 Migration From D.py.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,19 @@
1212
- These work mostly the same, with a few notable changes:
1313
- Your setup function doesn't need to do `bot.add_cog()`. Simply call `MyCog(bot)`, and it'll automatically register itself.
1414
- Extensions already define `self.bot`, you don't need to do that in your `__init__` function.
15-
- For a full example, see [here](/Guides/20 Extensions/)
15+
- For a full example, see [here](/interactions.py/Guides/20 Extensions/)
1616

1717
4. Event handlers
1818
- Register event handlers with `@interactions.listen`
1919
- Where possible, we use the official names for events, most notably `on_message_create` instead of dpy's `on_message`.
2020
- A full list can be found [here](/interactions.py/API Reference/API Reference/events/discord/).
2121
- Event details are stored on a model, passed as a single parameter. (eg: `on_member_update(before, after)` becomes `on_member_update(event)`, where event has a `.before` and `.after`.
2222
- `on_ready` is called whenever the gateway resumes. If you are looking to run stuff *once* upon startup, use the `on_startup` handler instead.
23-
- For more details, read [the Events guide](/Guides/10 Events).
23+
- For more details, read [the Events guide](/interactions.py/Guides/10 Events).
2424

2525
5. Migrating your commands
26-
- If you were already using dpy's command extension, migrating to slash commands is fairly simple. You just need to convert the decorators as per the [Slash Commands guide](/Guides/03 Creating Commands/)
27-
- If you wish to keep using prefixed commands (sometimes called message or text-based commands), you can use our prefixed command extension, which has an [extensive guide for them](/Guides/07 Creating Prefixed Commands). The syntax should be very similar to discord.py with a few exceptions.
26+
- If you were already using dpy's command extension, migrating to slash commands is fairly simple. You just need to convert the decorators as per the [Slash Commands guide](/interactions.py/Guides/03 Creating Commands/)
27+
- If you wish to keep using prefixed commands (sometimes called message or text-based commands), you can use our prefixed command extension, which has an [extensive guide for them](/interactions.py/Guides/07 Creating Prefixed Commands). The syntax should be very similar to discord.py with a few exceptions.
2828
- If you were manually handling commands with `on_message`, you'll probably need to figure it out yourself, as this guide doesn't know how you wrote your parser. Consider using the provided command handlers.
2929

3030
???+ Note

docs/src/Guides/40 Tasks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ To start a task that has been created, you need to run the `Task.start()` method
115115
```
116116
{ .annotate }
117117

118-
1. See [Events](/Guides/10 Events/) for more information
118+
1. See [Events](/interactions.py/Guides/10 Events/) for more information
119119

120120
=== ":two: Manual Registration"
121121

docs/src/Guides/99 2.x Migration_NAFF.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ from interactions.ext import prefixed_commands
1717
client = Client(..., intents=Intents.GUILD_MESSAGES | ...)
1818
prefixed_commands.setup(client)
1919
```
20-
From here it's more or less the same as before. You can find a guide on how to use prefixed commands [here](/Guides/26 Prefixed Commands/).
20+
From here it's more or less the same as before. You can find a guide on how to use prefixed commands [here](/interactions.py/Guides/26 Prefixed Commands/).
2121

2222
## Hybrid Commands
2323
For now, hybrid commands are not supported, but they will be in the future.

0 commit comments

Comments
 (0)