-
Notifications
You must be signed in to change notification settings - Fork 15
/
mkdocs.yml
69 lines (64 loc) · 1.97 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
# yaml-language-server: $schema=https://squidfunk.github.io/mkdocs-material/schema.json
site_name: norlab_icp_mapper
repo_url: https://github.com/norlab-ulaval/norlab_icp_mapper
edit_uri: edit/master/docs
site_description: "A 2-D/3-D mapping library relying on the 'Iterative Closest Point' algorithm."
docs_dir: 'docs'
theme:
name: material
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: black
accent: amber
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: amber
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- navigation.footer
- navigation.tabs.sticky
- navigation.top
- content.tabs.link
- content.code.copy
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/norlab-ulaval/norlab_icp_mapper
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/company/norlab/
- icon: fontawesome/solid/globe
link: https://norlab.ulaval.ca
markdown_extensions:
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- admonition
- pymdownx.details
- pymdownx.superfences
- attr_list
- md_in_html
- pymdownx.arithmatex:
generic: true
extra_javascript:
- javascripts/katex.js
- https://unpkg.com/katex@0/dist/katex.min.js
- https://unpkg.com/katex@0/dist/contrib/auto-render.min.js
extra_css:
- https://unpkg.com/katex@0/dist/katex.min.css
nav:
- Home: 'index.md'
- Compilation: 'Compilation.md'
- 'Example: building a map from lidar scans': 'RunningExample.md'
- 'How to configure the Mapper': 'MapperConfiguration.md'
- 'Creating a MapperModule': 'MapperModuleDev.md'
- 'How to use norlab_icp_mapper in ROS?': 'UsingInRos.md'
- 'How to use norlab_icp_mapper in Python?': 'Python.md'