-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yml
60 lines (56 loc) · 1.39 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
site_name: "Mininterface"
repo_name: CZ-NIC/mininterface
repo_url: https://github.com/CZ-NIC/mininterface
docs_dir: docs
theme:
name: "material"
features: navigation.expand
plugins:
- search
- mermaid2
- mkdocstrings:
handlers:
python:
options:
docstring_style: google
docstring_section_style: table
show_source: false
members_order: source
show_bases: false
show_labels: false
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
use_pygments: true # highlight code during build time, not in javascript
linenums: false # enable line numbering
linenums_style: pymdownx-inline # how lines are numbered
- pymdownx.inlinehilite
- pymdownx.snippets
- admonition
- pymdownx.details
- pymdownx.superfences:
custom_fences: # make exceptions to highlighting of code:
- name: mermaid
class: mermaid
format: !!python/name:mermaid2.fence_mermaid_custom
- pymdownx.keys # keyboard keys
- tables
- footnotes
nav:
- Introduction: index.md
- Overview.md
- API:
- run.md
- Mininterface.md
- Tag.md
- Facet.md
- Subcommands.md
- Helper-types.md
- Extras:
- Types.md
- Validation.md
- Exceptions.md
- Interfaces.md
- Standalone.md
- Experimental.md
- Changelog.md