-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmkdocs.yml
78 lines (72 loc) · 1.9 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
site_name: SRAMPlatform
repo_url: https://github.com/servinagrero/SRAMPlatform
repo_name: SRAMPlatform
edit_uri: ""
theme:
logo: img/logo.svg
name: material
palette:
- scheme: default
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
primary: deep purple
accent: light blue
- scheme: slate
toggle:
icon: material/toggle-switch
name: Switch to light mode
primary: white
accent: dark blue
font:
text: Roboto
code: Roboto Mono
icon:
repo: fontawesome/brands/github
features:
- navigation.instant
- navigation.tabs
- navigation.top
- navigation.sections
- navigation.expand
- toc.integrate
- content.code.annotate
extra_css:
- stylesheets/extra.css
plugins:
- search
- autorefs
- mkdocstrings
markdown_extensions:
- attr_list
- md_in_html
- def_list
- admonition
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.details
- pymdownx.superfences
nav:
- Introduction: index.md
- Getting started: starting.md
- Platform:
- Description: description.md
- Platform API: platform_api.md
- TIMA Station:
- Information: tima.md
- Implementation:
- Communication: communication.md
- Devices: devices.md
- Storage: database.md
- Logging: logging.md
- Code Execution: code_exec.md
- Available commands: commands.md
- Deployment: deployment.md
- Code Reference:
- Platform API: tima_api.md
- Device API: device_api.md