-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
58 lines (47 loc) · 1.5 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
site_name: The Wumpy project
copyright: Copyright © 2022 The Wumpy project and contributors
repo_name: GitHub
repo_url: https://github.com/wumpyproject/docs/
theme:
name: null
custom_dir: 'theme/'
plugins:
- mkdocstrings:
default_handler: python
handlers:
python:
rendering:
show_source: false
markdown_extensions:
- admonition
- meta
- pymdownx.highlight:
use_pygments: true
- pymdownx.tabbed
- pymdownx.superfences
nav:
- Home: 'index.md'
- Getting Started:
- Developer usage:
- Getting Set Up: 'getting-started/getting-set-up/index.md'
- Creating Commands: 'getting-started/creating-commands/index.md'
- Command Options: 'getting-started/command-options.md'
- Option Choices: 'getting-started/option-choices.md'
- Context menus: 'getting-started/context-menus.md'
- Advanced Options: 'tgetting-started/advanced-options.md'
- Library usage:
- Creating a library: 'getting-started/creating-a-library.md'
- Topics:
- 'topics/index.md'
- Anatomy of a command: 'topics/anatomy-of-a-command.md'
- Extending:
- Introduction: 'extending/index.md'
- REST ratelimiter: 'extending/rest-ratelimiter.md'
- Gateway limiter: 'extending/gateway-limiter.md'
- API Reference:
- Wumpy-gateway: 'api/gateway.md'
- Wumpy-rest: 'api/rest.md'
- Wumpy-models: 'api/models.md'
- Wumpy-cache: 'api/cache.md'
- Wumpy-interactions: 'api/interactions.md'
- Wumpy-bot: 'api/bot.md'