-
Notifications
You must be signed in to change notification settings - Fork 132
/
mkdocs.yml
72 lines (67 loc) · 1.74 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
# This file configures how Artery's website is built using mkdocs.
# For more information see https://www.mkdocs.org
site_name: Artery V2X Simulation Framework
site_dir: www
repo_name: 'Artery on GitHub'
repo_url: https://github.com/riebl/artery
theme:
name: material
features:
- tabs
- content.code.copy # Adds "copy to clipboard" button to code blocks
icon:
logo: fontawesome/solid/wifi
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: 'teal'
accent: 'deep orange'
toggle:
icon: material/weather-night
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: 'teal'
accent: 'deep orange'
toggle:
icon: material/weather-sunny
name: Switch to light mode
font:
text: 'Lato'
code: 'Oxygen Mono'
markdown_extensions:
- admonition
- abbr
- attr_list
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets:
auto_append:
- docs/includes/abbreviations.md
- pymdownx.superfences
- footnotes
- meta
- toc:
permalink: true
- vidify
plugins:
- search
- git-revision-date-localized
nav:
- Artery: index.md
- Features:
- Middleware: features/middleware.md
- Environment Model: features/envmod.md
- GEMV²: features/gemv2.md
- Storyboard: features/storyboard.md
- Install Instructions: install.md
- Architecture: architecture.md
- Literature: literature.md
- Work with VS Code: vscode.md
- Questions & Answers: questions-n-answers.md
- Legal Notice: legal.md