-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmkdocs.yaml
More file actions
179 lines (170 loc) · 4.79 KB
/
mkdocs.yaml
File metadata and controls
179 lines (170 loc) · 4.79 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
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
site_name: KevinbotLib
site_author: Kevin Ahr
site_url: https://meowmeowahr.github.io/kevinbotlib
theme:
name: "material"
language: en
features:
- content.code.copy
- content.tabs.link
- content.action.edit
- navigation.top
- navigation.instant
- navigation.instant.progress
- navigation.footer
- navigation.indexes
- navigation.tabs
font:
text: Inter
code: JetBrains Mono
icon:
logo: material/robot
palette:
# Palette toggle for automatic mode
- media: "(prefers-color-scheme)"
primary: #60a5fa
toggle:
icon: material/brightness-auto
name: Switch to light mode
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
primary: #60a5fa
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
primary: #60a5fa
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to system preference
markdown_extensions:
- attr_list
- md_in_html
- footnotes
- admonition
- pymdownx.details
- pymdownx.snippets
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.tabbed:
alternate_style: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tilde
- pymdownx.keys
plugins:
- mkdocstrings:
handlers:
python:
options:
heading_level: 2
members_order: source
show_root_heading: true
show_symbol_type_heading: true
show_symbol_type_toc: true
show_root_members_full_path: true
parameter_headings: false
show_source: false
show_if_no_docstring: true
filters: ["!^_", "^__init__$"]
- search
- mike
- blog
- rss:
match_path: blog/posts/.*
date_from_meta:
as_creation: date
categories:
- categories
- tags
extra:
version:
provider: mike
nav:
- Docs:
- index.md
- installation.md
- Examples:
- examples/index.md
- examples/comm.md
- examples/logger.md
- examples/joystick.md
- examples/system.md
- Applications:
- Control Console:
- apps/console/index.md
- apps/console/launching.md
- apps/console/run.md
- apps/console/controllers.md
- apps/console/metrics.md
- apps/console/settings.md
- Dashboard:
- apps/dashboard/index.md
- apps/dashboard/launching.md
- apps/dashboard/ui.md
- apps/dashboard/settings.md
- apps/dashboard/widgets.md
- Log Downloader:
- apps/logdownloader/index.md
- apps/logdownloader/launching.md
- apps/logdownloader/connection.md
- apps/logdownloader/controls.md
- apps/logdownloader/viewing.md
- Log Viewer:
- apps/logviewer/index.md
- apps/logviewer/launching.md
- apps/logviewer/loading.md
- apps/logviewer/viewing.md
- Command Line Tools:
- cli/index.md
- commandscheduler.md
- robot.md
- Communications:
- comms/index.md
- comms/sendables.md
- Simulation Framework:
- sim/index.md
- sim/windowview.md
- Vision:
- vision/index.md
- vision/extend-basecamera.md
- vision/simulation.md
- Hardware:
- hardware/interface-vs-controller.md
- Controllers:
- hardware/controllers/keyvalue.md
- Interfaces:
- hardware/interfaces/serial.md
- fileserver.md
- KevinbotLib DeployTool:
- deploytool/index.md
- deploytool/commands.md
- deploytool/deployfile.md
- KevinbotLib Reference:
- reference/robot.md
- reference/logging.md
- reference/scheduler.md
- reference/comm.md
- reference/joystick.md
- reference/fileserver.md
- reference/hardwareinterface.md
- reference/hardwarecontroller.md
- reference/simulator.md
- reference/coord.md
- reference/vision.md
- reference/metrics.md
- reference/ui.md
- reference/misc.md
- reference/exceptions.md
- Blog:
- blog/index.md
repo_url: https://github.com/meowmeowahr/kevinbotlib
extra_css:
- stylesheets/extra.css