-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
104 lines (96 loc) · 2.54 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
95
96
97
98
99
100
101
102
103
104
site_name: TEO Developer Manual
repo_name: roboticslab-uc3m/teo-developer-manual
repo_url: https://github.com/roboticslab-uc3m/teo-developer-manual
edit_uri: blob/master/docs/
theme:
name: material
language: en
logo: fig/roboticslab.svg
favicon: fig/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
- Cognitive Architecture: architecture.md
- Software Repositories:
- overview/README.md
- PC Software: overview/pc.md
- Firmware: overview/firmware.md
- Demonstration: overview/demonstration.md
- Research: overview/research.md
- Development: overview/development.md
- Tutorial:
- tutorial/README.md
- Motor Control: tutorial/motor.md
- Trajectory Execution: tutorial/trajectories.md
- RGB-D Sensor: tutorial/rgbd.md
- Mesh From Real Depth: tutorial/mesh.md
- Scene Reconstruction: tutorial/kinfu.md
- Force/Torque Sensors: tutorial/ft.md
- diagrams.md
- tables.md
- dynamic-information.md
- switches-and-power.md
- connectors.md
- network-information.md
- driver-check-procedure.md
- demo-procedure.md
- additional-resources.md
- contributors.md
use_directory_urls: false
markdown_extensions:
- attr_list # for mkdocs-pdf
- toc:
permalink: '#'
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
plugins:
- search
- open-in-new-tab
- git-revision-date-localized
- table-reader
- include-markdown
- mermaid2
- mkdocs-pdf