-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
52 lines (50 loc) · 1.24 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
site_name: "Documentation for Thermite - a CLI Generator"
theme:
name: material
features:
- navigation.expand
plugins:
- search
- mkdocstrings:
handlers:
python:
options:
members_order: "source"
show_if_no_docstring: True
separate_signature: true
merge_init_into_class: true
filters:
- "!^_"
- "!^__"
show_root_toc_entry: False
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.snippets
- pymdownx.tabbed:
alternate_style: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- toc:
toc_depth: 2
nav:
- Home: index.md
- Customization:
- CLI callbacks: ./cli_callbacks.md
- Classes/Events: ./classes_events.md
- Examples:
- Basics: examples/basic.md
- Lists: examples/lists.md
- Dataclasses: examples/dataclasses.md
- Advanced: examples/advanced.md
- References: ./references.md
extra_css:
- css/mkdocstrings.css