-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yml
71 lines (65 loc) · 1.46 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
71
site_name: Kiara
site_description: Documentation for the Kiara project
site_url: https://dharpa.org/kiara
repo_url: https://github.com/DHARPA-Project/kiara
site_author: Markus Binsteiner
copyright: DHARPA project
docs_dir: docs
site_dir: build/site
theme:
name: material
features:
- navigation.instant
- navigation.tracking
extra_css:
- stylesheets/extra.css
markdown_extensions:
- attr_list
- admonition
- def_list
- codehilite:
guess_lang: false
- toc:
permalink: true
toc_depth: 3
- pymdownx.snippets:
base_path: docs
- pymdownx.highlight
- pymdownx.superfences
extra:
version:
provider: mike
plugins:
- search
- autorefs
- mkdocstrings:
default_handler: python
handlers:
python:
path: [src]
options:
heading_level: 2
show_category_heading: true
members_order: source
show_submodules: false
docstring_style: google
show_if_no_docstring: true
show_signature_annotations: true
separate_signature: false
filters:
- "!^_" # exlude all members starting with _
- "^_config_cls"
watch:
- "src"
enable_inventory: true
- macros:
modules:
- kiara.doc.mkdocs_macros_cli
- kiara.doc.mkdocs_macros_kiara
- gen-files:
scripts:
# - scripts/documentation/gen_info_pages.py
- scripts/documentation/gen_api_doc_pages.py
- literate-nav:
nav_file: SUMMARY.md
- section-index