-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmkdocs.yml
75 lines (70 loc) · 1.99 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
site_name: Student Robotics Volunteer Runbook
site_url: https://studentrobotics.org/runbook/
repo_url: https://github.com/srobo/runbook
strict: true
edit_uri: edit/main/docs/
theme:
name: material
icon:
logo: fontawesome/solid/book
favicon: favicon.ico
palette:
primary: 'blue'
accent: 'blue'
custom_dir: theme
features:
- navigation.tabs
- navigation.index
- content.action.edit
- content.action.view
copyright: |
Copyright © Student Robotics contributors
<br>
This work is licensed under a
<a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">
Creative Commons Attribution-ShareAlike 4.0 International License
</a>.
# Customization
extra:
social:
- icon: fontawesome/solid/globe
link: https://studentrobotics.org
- icon: fontawesome/brands/github-alt
link: https://github.com/srobo
- icon: fontawesome/brands/twitter
link: https://twitter.com/studentrobotics
# Extensions
markdown_extensions:
# Note: the mermaid2 plugin also relies on code blocks for graphs, which isn't
# completely compatible with the following extensions, so we keep them
# disabled. If we turn out to need code blocks in this project, we can
# solve this then. See https://github.com/fralau/mkdocs-mermaid2-plugin#using-mermaid-and-code-highlighting-at-the-same-time.
# - markdown.extensions.codehilite
# - pymdownx.superfences
- footnotes
- markdown.extensions.admonition
- markdown.extensions.def_list
- markdown.extensions.toc:
permalink: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
- pymdownx.emoji:
emoji_generator: !!python/name:pymdownx.emoji.to_svg
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.progressbar
- pymdownx.smartsymbols
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
- mdx_include:
base_path: docs
- attr_list
plugins:
- search
- markdownextradata
- mermaid2