-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
131 lines (120 loc) · 3.03 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
site_name: Tileio
site_dir: "site"
site_description: Tileio documentation
repo_name: AmbiqAI/tileio-docs
repo_url: https://github.com/AmbiqAI/tileio-docs
copyright: Copyright © 2024 Ambiq
nav:
- Home:
- Home: index.md
- Usage: usage/index.md
- Demos: demos/index.md
- Guides: guides/index.md
- API: api/index.md
- Usage:
- usage/index.md
- Dashboard: usage/dashboard.md
- Tiles: usage/tiles.md
- Demos:
- demos/index.md
- HeartKit Demo: demos/heartkit.md
- Guides:
- guides/index.md
- New Dashboard: guides/new-dashboard.md
- Demos: guides/demos.md
theme:
name: material
favicon: assets/favicon.png
logo: assets/logo.png
icon:
repo: fontawesome/brands/github-alt
font:
text: Roboto
code: Roboto Mono
palette:
- media: "(prefers-color-scheme)"
primary: custom
accent: blue
toggle:
icon: material/brightness-auto
name: Use system theme
- media: "(prefers-color-scheme: light)"
scheme: default
primary: custom
accent: blue
toggle:
icon: material/brightness-7
name: Switch to light theme
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: custom
accent: blue
toggle:
icon: material/brightness-4
name: Switch to dark theme
features:
- content.code.annotate
- content.code.copy
- content.tooltips
- search.highlight
- search.share
- search.suggest
- toc.follow
- navigation.top
- navigation.tabs
- navigation.tabs.sticky
- navigation.prune
- navigation.path
- navigation.footer
- navigation.tracking
- navigation.instant
- navigation.instant.progress
- navigation.indexes
- navigation.sections # navigation.expand or navigation.sections
- content.tabs.link # all code tabs change simultaneously
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
import:
- https://docs.python.org/3/objects.inv
- https://numpy.org/doc/stable/objects.inv
options:
docstring_style: google
docstring_section_style: list
heading_level: 3
line_length: 120
show_root_heading: true
extra_css:
- css/mkdocstrings.css
- css/termynal.css
- css/custom.css
extra_javascript:
- js/termynal.js
- js/custom.js
markdown_extensions:
- admonition
- attr_list
- pymdownx.arithmatex:
generic: true
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets:
base_path: 'docs/'
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- tables
- md_in_html
- sane_lists