-
Notifications
You must be signed in to change notification settings - Fork 44
/
mkdocs.yml
39 lines (36 loc) · 1.06 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
site_name: Skybolt
use_directory_urls: false
theme:
name: material
color_mode: auto
user_color_mode_toggle: true
features:
- navigation.indexes
nav:
- Overview: index.md
- Getting Started: getting_started.md
- Building from Source: building_from_source.md
- Asset Packages: asset_packages.md
- Configuration: configuration.md
- Architecture: architecture.md
- Python API:
- python_api/index.md
- skybolt: python_api/skybolt.md
- skybolt_util: python_api/skybolt_util.md
plugins:
- search
- mkdocstrings:
handlers:
python:
options:
docstring_style: google
show_if_no_docstring: true
show_source: false
show_root_heading: false
show_root_toc_entry: false
show_symbol_type_heading: true
show_category_heading: true
heading_level: 3
filters:
- "!^__.*__$" # Exclude all magic methods
- "!^_pybind11_.*_$" # Exclude pybind11 internal details