-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
55 lines (51 loc) · 1.34 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
---
site_name: Compendium
site_url: https://kuwv.github.io/python-compendium/
site_author: Jesse P. Johnson
copyright: copywright (c) 2020 by Jesse Johnson.
repo_url: https://github.com/kuwv/python-compendium
theme:
name: material
palette:
- scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/toggle-switch
name: Switch to light mode
- scheme: slate
primary: blue
accent: blue
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
features:
- search.highlight
markdown_extensions:
- admonition
- codehilite
- pymdownx.critic
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tabbed
plugins:
- search
- mkdocstrings:
default_handler: python
nav:
- Welcome to Compendium: index.md
- Configuration Manager: configuration.md
- Schema: schema.md
- Settings: settings.md
- Development:
- Config Manager: development/config_manager.md
- Paths: development/paths.md
- Settings: development/settings.md
- Loader: development/loader.md
- Filetypes Base: development/filetypes.md
- Filetypes:
- Json: development/filetypes/json.md
- Toml: development/filetypes/toml.md
- Xml: development/filetypes/xml.md
- Yaml: development/filetypes/yaml.md