-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
83 lines (77 loc) · 1.87 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
72
73
74
75
76
77
78
79
80
81
82
83
site_url: ""
site_name: Markdown-Toolkit
use_directory_urls: false
repo_url: https://github.com/danielloader/markdown-toolkit
repo_name: danielloader/markdown-toolkit
theme:
name: material
icon:
repo: fontawesome/brands/github-alt
features:
# - navigation.instant
- navigation.tracking
- navigation.indexes
- navigation.top
- navigation.expand
- toc.follow
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
accent: purple
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
toggle:
icon: material/weather-night
name: Switch to light mode
nav:
- Quick Start: index.md
- Module API:
- reference/makdowndocument.md
- reference/markdowninjector.md
- reference/utils.md
markdown_extensions:
- admonition
- meta
- toc:
permalink: true
- pymdownx.keys
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.superfences:
custom_fences:
- name: python
class: python
validator: !!python/name:markdown_exec.validator
format: !!python/name:markdown_exec.formatter
- pymdownx.inlinehilite
- pymdownx.superfences
- pymdownx.snippets
- pymdownx.tabbed:
alternate_style: true
- attr_list
plugins:
- mike:
# these fields are all optional; the defaults are as below...
version_selector: true # set to false to leave out the version selector
- markdown-exec
- mkdocstrings:
default_handler: python
handlers:
python:
rendering:
show_source: false
selection:
filters:
- "!^_"
- "^__init__$"
- "!^can_replace$"
watch:
- markdown_toolkit
- examples
extra:
version:
provider: mike