-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmkdocs.yml
106 lines (90 loc) · 2.42 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
103
104
105
106
# yaml-language-server: $schema=https://squidfunk.github.io/mkdocs-material/schema.json
site_name: aiovantage
site_url: https://aiovantage.readthedocs.io
repo_url: https://github.com/loopj/aiovantage
repo_name: "loopj/aiovantage"
edit_uri: "blob/main/docs"
watch: [mkdocs.yml, README.md, CONTRIBUTING.md, src/aiovantage]
nav:
- Overview: index.md
- API Reference: reference
- Contributing: contributing.md
- License: license.md
validation:
omitted_files: warn
absolute_links: warn
unrecognized_links: warn
theme:
name: material
icon:
logo: material/alpha-v-box-outline
favicon: images/favicon.png
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: deep purple
accent: lime
toggle:
icon: material/weather-night
name: "Switch to dark mode"
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: deep purple
accent: lime
toggle:
icon: material/weather-sunny
name: "Switch to light mode"
features:
- content.action.edit
- content.action.view
- content.code.copy
- navigation.footer
- navigation.indexes
- navigation.sections
- navigation.tabs
- navigation.top
- toc.follow
plugins:
- search
- api-autonav:
modules: ["src/aiovantage"]
- mkdocstrings:
handlers:
python:
paths: [src]
inventories:
- url: https://docs.python.org/3/objects.inv
domains: [py, std]
options:
# General
show_source: false
# Headings
heading_level: 1
show_root_heading: true
show_symbol_type_heading: true
show_symbol_type_toc: true
# Members
members_order: source
filters: ["!^_"]
summary: true
# Docstrings
docstring_options:
ignore_init_summary: true
docstring_section_style: list
merge_init_into_class: true
scoped_crossrefs: true
# Signatures
show_signature_annotations: true
separate_signature: true
signature_crossrefs: true
markdown_extensions:
- admonition
- pymdownx.highlight
- pymdownx.magiclink
- pymdownx.superfences
- pymdownx.snippets:
dedent_subsections: true
- toc:
permalink: true
extra_css:
- stylesheets/mkdocstrings.css