forked from tier4/nebula
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
102 lines (94 loc) · 2.54 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
### Site metadata ###
site_name: Nebula
site_description: Nebula Multi-Sensor Driver Framework
repo_url: https://github.com/tier4/nebula
docs_dir: docs
copyright: Copyright © 2023 TIER IV, Inc.
### Theme settings ###
theme:
name: material
language: en
# logo: docs/logo.png
# favicon: docs/favicon.png
features:
- navigation.tabs
- navigation.indexes
- navigation.top
- search.suggest
- search.highlight
palette:
- scheme: default
primary: white
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- scheme: slate
primary: grey
toggle:
icon: material/weather-night
name: Switch to light mode
use_directory_urls: true
### Navigation ###
nav:
- Home: index.md
- Design: design.md
- About Nebula: about.md
- Add Your Sensor: add_sensor.md
- Hesai Decoder Design: hesai_decoder_design.md
- Nebula Common: nebula_common/links.md
- Nebula Decoders: nebula_decoders/links.md
- Nebula HW Interfaces: nebula_hw_interfaces/links.md
- Nebula ROS: nebula_ros/links.md
### Extra Settings ###
plugins:
- mkdoxy:
projects:
nebula_common:
src-dirs: nebula_common/include
full-doc: True
doxy-cfg:
FILE_PATTERNS: "*.hpp *.h"
RECURSIVE: True
EXTRACT_ALL: True
INLINE_SOURCES: True
ENABLE_PREPROCESSING: True
MACRO_EXPANSION: True
nebula_decoders:
src-dirs: nebula_decoders/include
full-doc: True
doxy-cfg:
FILE_PATTERNS: "*.hpp *.h"
RECURSIVE: True
EXTRACT_ALL: True
INLINE_SOURCES: True
ENABLE_PREPROCESSING: True
MACRO_EXPANSION: True
nebula_hw_interfaces:
src-dirs: nebula_hw_interfaces/include
full-doc: True
doxy-cfg:
FILE_PATTERNS: "*.hpp *.h"
RECURSIVE: True
EXTRACT_ALL: True
INLINE_SOURCES: True
ENABLE_PREPROCESSING: True
MACRO_EXPANSION: True
nebula_ros:
src-dirs: nebula_ros/include
full-doc: True
doxy-cfg:
FILE_PATTERNS: "*.hpp *.h"
RECURSIVE: True
EXTRACT_ALL: True
INLINE_SOURCES: True
ENABLE_PREPROCESSING: True
MACRO_EXPANSION: True
save-api: .mkdoxy
full-doc: True
debug: False
ignore-errors: False
- search:
lang: en
markdown_extensions:
- pymdownx.highlight
- pymdownx.superfences