-
Notifications
You must be signed in to change notification settings - Fork 10
/
mkdocs.yml
66 lines (66 loc) · 1.53 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
site_name: RoSys
site_url: https://rosys.io/
nav:
- About: "index.md"
- installation.md
- getting_started.md
- Examples:
- examples/steering.md # NOTE: shown when clicking on "Examples" folder
- examples/steering.md
- examples/click-and-drive.md
- examples/play-pause-stop.md
- examples/navigation.md
- examples/hardware.md
- examples/simulation_speed.md
- examples/cameras.md
- examples/coordinate_frames.md
- examples/schedule.md
- examples/persistence.md
- Module Reference: reference/
- development.md
- troubleshooting.md
repo_url: https://github.com/zauberzeug/rosys
edit_uri: edit/main/docs/
theme:
name: material
font:
text: Source Sans Pro
features:
- content.code.annotate
extra_css:
- stylesheets/extra.css
markdown_extensions:
- toc:
permalink: True
- admonition
- def_list
- mdx_include:
base_path: docs
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.superfences
- pymdownx.snippets
- attr_list
- footnotes
plugins:
- search
- gen-files:
scripts:
- docs/generate_reference.py
- literate-nav:
nav_file: SUMMARY.md
- section-index
- mkdocstrings:
default_handler: python
handlers:
python:
options:
show_root_heading: true
show_root_full_path: false
show_source: false
show_signature_annotations: true
merge_init_into_class: true
separate_signature: true
watch:
- rosys
- README.md