-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmkdocs.yml
More file actions
70 lines (66 loc) · 1.83 KB
/
mkdocs.yml
File metadata and controls
70 lines (66 loc) · 1.83 KB
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
site_name: Python wrapper for X-Plane Web API
theme:
name: "material"
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: teal
accent: purple
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: lime
toggle:
icon: material/weather-night
name: Switch to system preference
logo: x-plane.svg
nav:
- Home:
- Overview: index.md
- Changelog: changelog.md
- Usage: usage/index.md
- Reference: reference/index.md
markdown_extensions:
- pymdownx.snippets
plugins:
- search
- mkdocstrings:
handlers:
python:
options:
# backlinks: tree
docstring_options:
ignore_init_summary: true
docstring_section_style: list
# extensions: [scripts/griffe_extensions.py]
filters: public
heading_level: 1
inherited_members: true
line_length: 88
merge_init_into_class: true
parameter_headings: true
preload_modules: [mkdocstrings]
relative_crossrefs: true
scoped_crossrefs: true
separate_signature: true
show_bases: false
show_inheritance_diagram: true
show_root_heading: true
show_root_full_path: false
show_signature_annotations: true
show_source: false
show_symbol_type_heading: true
show_symbol_type_toc: true
signature_crossrefs: true
summary: true
unwrap_annotated: true
- git-revision-date-localized:
enable_creation_date: true
type: timeago