-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml.jinja
49 lines (49 loc) · 1.18 KB
/
mkdocs.yml.jinja
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
site_name: {{ project_name }}
theme:
name: material
logo: logoatro.png
favicon: logoatro.png
palette:
- media: "(prefers-color-scheme: light)"
scheme: slate
primary: teal
accent: teal
toggle:
icon: material/lightbulb-outline
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: default
primary: teal
accent: teal
toggle:
icon: material/lightbulb
name: Switch to light mode
features: [search.suggest]
plugins:
- include-markdown
- search:
lang: en
- mkdocstrings:
default_handler: python
handlers:
python:
options:
heading_level: 2
show_bases: false
members_order: source
separate_signature: true
filters: ["!^_"]
docstring_options:
ignore_init_summary: true
merge_init_into_class: true
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- admonition
- pymdownx.details
- pymdownx.extra