-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathmkdocs.yml
94 lines (94 loc) · 2.58 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
site_name: dingoPDM
site_url: https://corygrant.github.io/dingoPDM/
use_directory_urls: true
theme:
name: material
language: en
icon:
repo: fontawesome/brands/github
features:
- navigation.instant
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
- navigation.footer
- navigation.expand
- navigation.path
- toc.follow
- toc.integrate
- search.suggest
- search.highlight
- content.code.copy
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: grey
accent: lime
toggle:
icon: material/weather-night
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: grey
accent: lime
toggle:
icon: material/weather-sunny
name: Switch to light mode
repo_url: https://github.com/corygrant/dingoPDM
repo_name: corygrant/dingoPDM
extra:
generator: false
social:
- icon: fontawesome/brands/discord
link: https://discord.com/invite/TxnPYQkVu3
markdown_extensions:
- admonition
- tables
- pymdownx.keys
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.tasklist:
custom_checkbox: true
plugins:
- glightbox
- search
nav:
- Getting Started:
- Introduction: 'gettingstarted/introduction.md'
- Hardware:
- PCB: 'hardware/pcb.md'
- Connections: 'hardware/connections.md'
- Case: 'hardware/case.md'
- Firmware:
- Introduction: 'firmware/introduction.md'
- Design: 'firmware/design.md'
- CAN: 'firmware/can.md'
- LEDs: 'firmware/leds.md'
- Digital Inputs: 'firmware/digitalinputs.md'
- Configuration: 'firmware/configuration.md'
- Variable Mapping: 'firmware/variablemap.md'
- Errors: 'firmware/errors.md'
- Sleep: 'firmware/sleep.md'
- Updating: 'firmware/updating.md'
- Software:
- Introduction: 'software/introduction.md'
- ToolBar: 'software/toolbar.md'
- DeviceTree: 'software/devicetree.md'
- MessageList: 'software/messagelist.md'
- dingoPDM: 'software/dingopdm.md'
- CANBoard: 'software/canboard.md'
- CANMsgLog: 'software/msglog.md'