-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
64 lines (59 loc) · 1.52 KB
/
mkdocs.yml
File metadata and controls
64 lines (59 loc) · 1.52 KB
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
site_name: {{ project_name }}
site_description: {{ tag_line }}
site_url: https://{{project_name}}.readthedocs.io/
repo_url: https://github.com/{{organization}}/{{project_name}}
repo_name: {{organization}}/{{project_name}}
watch: [src/{{project_name}}, docs]
copyright: {{year}} {{author}}@{{organization}}
nav:
- Overview: "index.en.rst"
- Introduction: "01_introduction.em.md"
- Contributing: "contributing.md"
- Changelog: "changelog.md"
theme:
name: material
features:
- content.code.annotate
- navigation.top
- navigation.tracking
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: deep orange
accent: amber
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: amber
accent: orange
toggle:
icon: material/weather-night
name: Switch to system preference
extra_css:
- css/mkdocstrings.css
markdown_extensions:
- admonition
- attr_list
- pymdownx.highlight:
use_pygments: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.emoji
- pymdownx.magiclink
- toc:
permalink: true
- footnotes
plugins:
- autorefs
- search
- markdown-exec
- mkdocstrings