-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yml
59 lines (52 loc) · 1.07 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
site_name: Duploctl Wiki
# becomes dist/docs on_startup
docs_dir: wiki
site_dir: dist/site
watch:
- src
- wiki
theme:
name: material
features:
- content.code.annotate
- content.code.copy
plugins:
- mkdocstrings:
custom_templates: wiki/templates
handlers:
python:
options:
show_source: false
show_signature: false
inherited_members: true
filters:
- "^(?!__).*"
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.superfences
- pymdownx.magiclink
- pymdownx.snippets:
check_paths: true
hooks:
- ./scripts/mkdocs.py
nav:
- Readme: index.md
- Overview: Home.md
- Installation: Installation.md
# resources are injected here
- Module:
- Client: Client.md
- Commander: Commander.md
- ArgType: ArgType.md
- Plugins:
- AWS: plugins/aws.md
- Args: Args.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- Code of Conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
- License: License.md