-
Notifications
You must be signed in to change notification settings - Fork 7
/
mkdocs.yml
173 lines (169 loc) · 6.91 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
site_name: Discarpet Docs
repo_url: https://github.com/replaceitem/carpet-discarpet
edit_uri: blob/master/docs/pages
repo_name: replaceitem/carpet-discarpet
docs_dir: docs/pages
site_url: https://replaceitem.github.io/carpet-discarpet/
site_description: Discarpet documentation
site_author: replaceitem
strict: true
theme:
name: material
logo: assets/logo.png
favicon: assets/logo.png
icon:
repo: fontawesome/brands/github
features:
- toc.integrate
palette:
- scheme: default
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- scheme: slate
toggle:
icon: material/toggle-switch
name: Switch to light mode
extra_css:
- stylesheets/extra.css
markdown_extensions:
- toc:
permalink: "#"
toc_depth: 2
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.critic
- pymdownx.caret
- pymdownx.keys
- pymdownx.mark
- pymdownx.tilde
plugins:
- abs-to-rel
- search
- macros:
include_dir: docs/include
extra:
social:
- icon: fontawesome/brands/discord
link: https://discord.gg/etTDQAVSgt
name: My discord server
- icon: fontawesome/solid/download
link: https://modrinth.com/mod/discarpet
name: Download on Modrinth
- icon: fontawesome/brands/github
link: https://github.com/replaceitem/carpet-discarpet
name: GitHub
nav:
- Home: 'index.md'
- Getting started: 'setup.md'
- How it works: 'how-it-works.md'
- Functions:
- dc_send_message: 'functions/send-message.md'
- dc_react: 'functions/react.md'
- dc_delete: 'functions/delete.md'
- dc_set_name: 'functions/set-name.md'
- dc_set_channel_topic: 'functions/set-channel-topic.md'
- dc_create_thread: 'functions/create-thread.md'
- Value from id functions: 'functions/value-from-id.md'
- Bot functions:
- dc_get_bot_user: 'functions/bot/get-bot-user.md'
- dc_set_activity: 'functions/bot/set-activity.md'
- dc_set_status: 'functions/bot/set-status.md'
- User functions:
- dc_get_display_name: 'functions/users/get-display-name.md'
- dc_get_user_color: 'functions/users/get-user-color.md'
- dc_set_nickname: 'functions/users/set-nickname.md'
- dc_set_timeout: 'functions/users/set-timeout.md'
- dc_get_timeout: 'functions/users/get-timeout.md'
- Role functions:
- dc_add_role: 'functions/roles/add-role.md'
- dc_remove_role: 'functions/roles/remove-role.md'
- dc_get_user_roles: 'functions/roles/get-user-roles.md'
- dc_get_user-color: 'functions/roles/get-user-color.md'
- Interaction functions:
- dc_create_application_command: 'functions/interactions/create-application-command.md'
- dc_get_global_application_commands: 'functions/interactions/get-global-application-commands.md'
- dc_respond_interaction: 'functions/interactions/respond-interaction.md'
- Webhook functions:
- dc_create_webhook: 'functions/webhooks/create-webhook.md'
- dc_delete_webhook: 'functions/webhooks/delete-webhook.md'
- dc_send_webhook: 'functions/webhooks/send-webhook.md'
- dc_update_webhook: 'functions/webhooks/update-webhook.md'
- Values:
- Message: 'values/message.md'
- Channel: 'values/channel.md'
- Server: 'values/server.md'
- User: 'values/user.md'
- Role: 'values/role.md'
- Attachment: 'values/attachment.md'
- Reaction: 'values/reaction.md'
- Emoji: 'values/emoji.md'
- Sticker: 'values/sticker.md'
- Webhook: 'values/webhook.md'
- Application commands:
- Slash command: 'values/commands/slash-command.md'
- Message context menu: 'values/commands/message-context-menu.md'
- User context menu: 'values/commands/user-context-menu.md'
- Interactions:
- Slash command interaction: 'values/interactions/slash-command-interaction.md'
- Slash command interaction option: 'values/interactions/slash-command-interaction-option.md'
- Button interaction: 'values/interactions/button-interaction.md'
- Select menu interaction: 'values/interactions/select-menu-interaction.md'
- Modal interaction: 'values/interactions/modal-interaction.md'
- Message context menu interaction: 'values/interactions/message-context-menu-interaction.md'
- User context menu interaction: 'values/interactions/user-context-menu-interaction.md'
- Parsable values:
- Message content: 'parsables/message-content.md'
- Attachment: 'parsables/attachment.md'
- Color: 'parsables/color.md'
- Timestamp: 'parsables/timestamp.md'
- Allowed mentions: 'parsables/allowed-mentions.md'
- Thread: 'parsables/thread.md'
- Embeds:
- Embed: 'parsables/embeds/embed.md'
- Embed author: 'parsables/embeds/embed-author.md'
- Embed field: 'parsables/embeds/embed-field.md'
- Embed footer: 'parsables/embeds/embed-footer.md'
- Webhooks:
- Webhook profile: 'parsables/webhooks/webhook-profile.md'
- Webhook profile updater: 'parsables/webhooks/webhook-profile-updater.md'
- Webhook message profile: 'parsables/webhooks/webhook-message-profile.md'
- Commands:
- Slash command builder: 'parsables/commands/slash-command-builder.md'
- Slash command option: 'parsables/commands/slash-command-option.md'
- Slash command option choice: 'parsables/commands/slash-command-option-choice.md'
- User context menu builder: 'parsables/commands/user-context-menu-builder.md'
- Message context menu builder: 'parsables/commands/message-context-menu-builder.md'
- Components:
- Component: 'parsables/components/component.md'
- Button: 'parsables/components/button.md'
- Select menu: 'parsables/components/select-menu.md'
- Select menu option: 'parsables/components/select-menu-option.md'
- Text input: 'parsables/components/text-input.md'
- Modal: 'parsables/components/modal.md'
- Events:
- __on_system_message: 'events/system-message.md'
- __on_discord_message: 'events/discord-message.md'
- __on_discord_reaction: 'events/discord-reaction.md'
- __on_discord_slash_command: 'events/discord-slash-command.md'
- __on_discord_button: 'events/discord-button.md'
- __on_discord_select_menu: 'events/discord-select-menu.md'
- __on_discord_modal: 'events/discord-modal.md'
- Example scripts:
- Chat: 'examples/chat.md'
- Activity: 'examples/activity.md'
- Log: 'examples/log.md'
- Grief log: 'examples/grief-log.md'
- Reply: 'examples/reply.md'
- Embeds: 'examples/embeds.md'
- Attachments: 'examples/attachments.md'
- Reactions: 'examples/reactions.md'
- Slash commands: 'examples/slash-commands.md'
- Context menu: 'examples/context-menu.md'
- Message components: 'examples/message-components.md'
- Modal: 'examples/modal.md'