-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yaml
78 lines (72 loc) · 2.09 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
site_name: T4 Perception Dataset devkit
nav:
- Home:
- T4Devkit: index.md
- Installation: install.md
- Tutorials:
- Initialization: tutorials/initialize.md
- Visualization: tutorials/render.md
- Customization: tutorials/customize.md
- API:
- TIER IV: apis/tier4.md
- Schema: apis/schema.md
- DataClass: apis/dataclass.md
- Filtering: apis/filtering.md
- Viewer: apis/viewer.md
- Common: apis/common.md
theme:
name: material
features:
- navigation.indexes
- navigation.instant
- navigation.tabs
- navigation.tabs.sticky
- navigation.tracking
palette:
scheme: default
logo: assets/logo.png
plugins:
- search
- mkdocstrings:
handlers:
python:
options:
paths: ["t4_devkit"]
import: # Cross-references for python and numpy
- https://arrow.apache.org/docs/objects.inv
- https://docs.python.org/3/objects.inv
- https://numpy.org/doc/stable/objects.inv
- https://ipython.readthedocs.io/en/stable/objects.inv
docstring_style: google
docstring_section_style: list # list spacy table
heading_level: 3
filters: ["!^_"]
show_bases: true
show_source: false
inherited_members: false
members_order: source # The order of class members
parameter_headings: true
show_root_heading: false
show_symbol_type_heading: true
show_symbol_type_toc: true
merge_init_into_class: true
separate_signature: true
show_signature_annotations: true
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.details
- admonition
# Some extra styling
extra_css:
- css/mkdocstrings.css
# https://squidfunk.github.io/mkdocs-material/setup/setting-up-versioning/
extra:
version:
provider: mike
default: latest