-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yaml
54 lines (50 loc) · 1.59 KB
/
mkdocs.yaml
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
repo_url: https://github.com/hakuturu583/ros_rsj_seminar
site_name: ROS Seminar Website
theme:
name: material
feature:
tabs: true
icon:
logo: material/car
repo: fontawesome/brands/github
extra:
font:
text: "Noto Sans JP"
code: "Consolas"
search:
language: en
plugins:
- search
copyright: "Copyright © 2022 Robotics Society Japan."
markdown_extensions:
- attr_list
- codehilite: { guess_lang: false }
- fontawesome_markdown
- mdx_math
- plantuml_markdown: { server: http://www.plantuml.com/plantuml }
- pymdownx.arithmatex
- pymdownx.emoji: { emoji_generator: !!python/name:pymdownx.emoji.to_svg }
- pymdownx.highlight
- pymdownx.superfences
- toc: { permalink: "#" }
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_div_format
extra_css:
- "https://maxcdn.bootstrapcdn.com/font-awesome/4.6.1/css/font-awesome.min.css"
- https://unpkg.com/[email protected]/dist/mermaid.css
extra_javascript:
- http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML
- https://unpkg.com/mermaid/dist/mermaid.min.js
nav:
- Home: README.md
- 実習テキスト:
- ROSを用いたマップ取得: slam-basics.md
- マップを利用したナビゲージョン操作1: map-navigation.md
- マップを利用したナビゲージョン操作2: map-navigation-2.md
- ROS1からROS2へ: ros2.md
- 補足資料:
- Turtlebot3パッケージの入手: build_tb3_packages.md
- トラブルシューティング: trubleshooting.md