forked from BehaviorTree/BehaviorTree.CPP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
49 lines (42 loc) · 1.45 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: BehaviorTree.CPP
site_description: Introduction to Behavior Trees
site_author: Davide Faconti
copyright: 'Copyright © 2018 Davide Faconti, Eurecat'
theme:
name: 'material'
language: en
logo: 'images/BT.png'
feature:
tabs: true
palette:
primary: blue grey
accent: green
font:
text: Ubuntu
code: Roboto Mono
repo_name: 'BehaviorTree.CPP'
repo_url: 'https://github.com/BehaviorTree/BehaviorTree.CPP'
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences
- codehilite:
guess_lang: true
pages:
- Home: index.md
- Learn the basics:
- Introduction: BT_basics.md
- Sequence Nodes: SequenceNode.md
- Fallback Nodes: FallbackNode.md
- Decorators Nodes: DecoratorNode.md
- Tutorials:
- Getting started: getting_started.md
- "Tutorial 1: Create a Tree": tutorial_A_create_trees.md
- "Tutorial 2: NodeParameters": tutorial_B_node_parameters.md
- "Tutorial 3: Blackboards": tutorial_C_blackboard.md
- "Tutorial 4: Subtrees": tutorial_D_subtrees.md
- "Tutorial 5: Plugins": tutorial_E_plugins.md
- "Tutorial 6: Loggers": tutorial_F_loggers.md
- "Tutorial 7: Wrap legacy code": tutorial_G_legacy.md
- "Tutorial 8: Actions and Coroutines": tutorial_H_coroutines.md
- "The XML format": xml_format.md