forked from rosflight/rosflight_firmware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
61 lines (61 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
site_name: ROSflight
site_url: http://rosflight.org
repo_url: https://github.com/rosflight/firmware
edit_uri: blob/master/docs/
google_analytics: ['UA-96018590-2', 'docs.rosflight.org']
theme:
name: 'material'
palette:
primary: 'Blue Grey'
accent: 'red'
favicon: 'custom_theme/img/favicon.ico'
logo: 'custom_theme/img/logo.png'
feature:
tabs: True
# theme_dir: docs/custom_theme
extra_css: [custom_theme/extra.css]
extra_javascript:
- https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-AMS-MML_HTMLorMML
markdown_extensions:
- mdx_math
- admonition
- footnotes
- toc:
permalink: True
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
- codehilite:
linenums: False
pages:
- Home: index.md
- User Guide:
- Overview: user-guide/overview.md
- Getting started: user-guide/getting-started.md
- Hardware setup: user-guide/hardware-setup.md
- Autopilot setup: user-guide/autopilot-setup.md
- RC Configuration: user-guide/rc-configuration.md
- ROS setup: user-guide/ros-setup.md
- Parameter Configuration: user-guide/parameter-configuration.md
- Preflight checks: user-guide/preflight-checks.md
- Improving performance: user-guide/performance.md
- Running Gazebo Simulation: user-guide/gazebo_simulation.md
- Autonomous flight: user-guide/autonomous-flight.md
- Developer Guide:
- Contribution Guidelines: developer-guide/contribution-guidelines.md
- Style Guide: developer-guide/style-guide.md
- Code Architecture: developer-guide/code-architecture.md
- Building and Flashing: developer-guide/building-flashing.md
- Using a Debugger: developer-guide/debugging.md
- Writing Documentation: developer-guide/writing-documentation.md