-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
65 lines (60 loc) · 1.49 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
site_name: "discord-bot"
site_description: "A Discord Bot for the ITeapot team. Powered by hikari, crescent & miru."
site_url: "https://iteapot-discord-bot.readthedocs.io/en/latest/"
repo_url: "https://github.com/ITeapotPL/discord-bot"
repo_name: "ITeapotPL/discord-bot"
watch:
- "discord_bot"
nav:
- "Overview": "index.md"
- "Contributing": "contributing.md"
# - "API Reference":
# - module.py: "reference/module.md"
# - etc.
- "Changelog": "changelog.md"
theme:
name: "material"
features:
- "content.code.annotate"
- "navigation.top"
- "navigation.tracking"
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: "material/brightness-auto"
name: "Switch to light mode"
- media: "(prefers-color-scheme: light)"
scheme: "default"
primary: "teal"
accent: "purple"
toggle:
icon: "material/weather-sunny"
name: "Switch to dark mode"
- media: "(prefers-color-scheme: dark)"
scheme: "slate"
primary: "black"
accent: "lime"
toggle:
icon: "material/weather-night"
name: "Switch to system preference"
extra_css:
- "css/mkdocstrings.css"
markdown_extensions:
- "pymdownx.highlight":
use_pygments: true
- "pymdownx.superfences":
custom_fences:
- name: "mermaid"
class: "mermaid"
format: !!python/name:pymdownx.superfences.fence_code_format
- "toc":
permalink: true
- "admonition"
- "pymdownx.emoji"
- "pymdownx.magiclink"
- "footnotes"
plugins:
- "autorefs"
- "search"
- "markdown-exec"
- "mkdocstrings"