-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathmkdocs.yaml
More file actions
71 lines (71 loc) · 1.58 KB
/
mkdocs.yaml
File metadata and controls
71 lines (71 loc) · 1.58 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
65
66
67
68
69
70
71
site_name: MkAPI
site_url: https://daizutabi.github.io/mkapi/
site_description: API documentation with MkDocs.
site_author: daizutabi
repo_url: https://github.com/daizutabi/mkapi/
repo_name: daizutabi/mkapi
edit_uri: edit/main/docs/
theme:
name: material
font:
text: Fira Sans
code: Fira Code
icon:
repo: fontawesome/brands/github
palette:
- scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- scheme: slate
primary: black
accent: black
toggle:
icon: material/weather-night
name: Switch to light mode
features:
- content.code.annotate
- content.code.copy
- content.tooltips
- navigation.expand
- navigation.footer
- navigation.indexes
- navigation.sections
- navigation.tabs
- navigation.top
- navigation.tracking
- search.highlight
- search.suggest
plugins:
- search
- mkapi:
enabled: true
config: config.py
debug: true
exclude:
- _example
search_exclude: false
source_search_exclude: true
markdown_extensions:
- pymdownx.highlight:
use_pygments: true
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.snippets
- pymdownx.superfences
nav:
- Home: index.md
- Usage:
- Writing Docstrings: usage/writing.md
- usage/object.md
- usage/page.md
- usage/config.md
- API Reference:
- $api:src/mkapi.***
- Example: $api:src/example.***
watch:
- src/mkapi/css
- src/mkapi/javascript
- src/mkapi/templates