-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
70 lines (63 loc) · 1.53 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
site_name: rezup
site_url: https://davidlatwe.github.io/rezup/
repo_url: https://github.com/davidlatwe/rezup/
repo_name: GitHub
theme:
name: "material"
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/weather-sunny
name: Switch to dark mode
primary: cyan
accent: indigo
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/weather-night
name: Switch to light mode
primary: cyan
accent: indigo
features:
- navigation.top
- navigation.sections
extra_css:
- stylesheets/extra.css
markdown_extensions:
- admonition
- pymdownx.tabbed
- pymdownx.details
- pymdownx.snippets:
check_paths: true
- pymdownx.highlight
- pymdownx.superfences
plugins:
- search
- mkdocstrings:
watch:
- src
handlers:
python:
setup_commands:
- import sys
- sys.path.insert(0, "src")
selection:
docstring_style: 'google'
inherited_members: false
filters:
- "!^_" # exclude all members starting with _
- "^__init__$" # but always include __init__ modules and methods
nav:
- Home:
- Overview: index.md
- Usage:
- Container: container.md
- Command: command.md
- Scripts: scripts.md
- Environ: environ.md
- Reference:
- rezup: rezup.md
- rezup.util: rezup.util.md
- rezup.util_env: rezup.util_env.md
- License: license.md