-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmkdocs.yml
48 lines (41 loc) · 1.1 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
site_name: ReSim Open Libraries
site_url: http://resim-docs-prod.s3-website-us-west-1.amazonaws.com
copyright: Copyright © 2023, ReSim, Inc. All rights reserved
docs_dir: docs/resim
site_dir: site_open
markdown_extensions:
- pymdownx.arithmatex:
generic: true
- admonition
- attr_list
- pymdownx.details
extra_javascript:
- javascripts/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
dev_addr: 0.0.0.0:8080
theme:
name: readthedocs
highlightjs: true
hljs_languages:
- protobuf
nav:
- ReSim: 'index.md'
- Transforms:
- 'transforms/liegroups.md'
- 'transforms/using_liegroups.md'
- 'transforms/liegroup_derivatives.md'
- Curves:
- 'curves/index.md'
- 'curves/rigid_body_state.md'
- Math:
- 'math/gaussian.md'
- Time:
- 'time/time.md'
- Developer Utilities:
- 'assert/index.md'
- 'utils/match.md'
- 'utils/output_parameters.md'
- Visualization:
- 'visualization/index.md'
extra_css: [stylesheets/extra.css]