-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
82 lines (74 loc) · 1.98 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
site_name: Developer Manual
repo_name: roboticslab-uc3m/developer-manual
repo_url: https://github.com/roboticslab-uc3m/developer-manual
edit_uri: blob/master/docs/
theme:
name: material
language: en
logo: assets/roboticslab.svg
favicon: assets/favicon.ico
features:
- content.action.edit
- content.action.view
- navigation.footer
- navigation.indexes
- navigation.sections
- navigation.top
- navigation.tracking
- search.highlight
- search.suggest
icon:
repo: fontawesome/brands/github
palette:
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: light-blue
accent: light-blue
toggle:
icon: material/brightness-4
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: light-blue
accent: light-blue
toggle:
icon: material/brightness-7
name: Switch to dark mode
extra:
social:
- icon: material/web
link: http://roboticslab.uc3m.es/
- icon: fontawesome/brands/github
link: https://github.com/roboticslab-uc3m
- icon: fontawesome/brands/x-twitter
link: https://twitter.com/uc3mRoboticsLab
- icon: fontawesome/brands/youtube
link: https://www.youtube.com/@RoboticsLabUC3M
exclude_docs: |
fig/README.md
fig/editable/README.md
nav:
- Home: README.md
- introduction.md
- asking-questions.md
- documenting.md
- GitHub: github.md
- Programming:
- programming/README.md
- Programming with YARP: programming/programming-with-yarp.md
- Frequently Asked Questions (FAQ): frequently-asked-questions.md
- Appendices:
- appendix/README.md
- Repository Index: appendix/repository-index.md
- Project Index: appendix/project-index.md
- YARP Tricks: appendix/yarp-tricks.md
- Additional Links: appendix/additional-links.md
- contributors.md
use_directory_urls: false
markdown_extensions:
- toc:
permalink: '#'
plugins:
- search
- open-in-new-tab
- git-revision-date-localized