-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmkdocs.yml
123 lines (118 loc) · 3.03 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
site_name: Python Ember Mug
site_description: Unofficial Python API for interacting with Ember devices over Bluetooth
site_url: https://sopelj.github.io/python-ember-mug
repo_url: https://github.com/sopelj/python-ember-mug
repo_name: sopelj/python-ember-mug
edit_uri: edit/main/docs/
watch:
- ember_mug
validation:
omitted_files: warn
absolute_links: warn
unrecognized_links: warn
nav:
- Home: index.md
- Usage:
- Installation: usage/installation.md
- CLI: usage/cli.md
- Python: usage/python.md
- API Reference:
- ember_mug: api/
- Contributing: contributing.md
- Changelog: changelog.md
theme:
name: material
icon:
logo: material/coffee
language: en
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: brown
accent: brown
toggle:
icon: material/weather-night
name: Dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: brown
accent: brown
toggle:
icon: material/weather-sunny
name: Light mode
features:
- content.tooltips
- navigation.expand
- navigation.indexes
- navigation.instant
- navigation.sections
- navigation.tabs
- navigation.tabs.sticky
- content.code.copy
markdown_extensions:
- pymdownx.critic
- pymdownx.caret
- pymdownx.mark
- pymdownx.tilde
- pymdownx.tabbed
- attr_list
- admonition
- pymdownx.highlight:
linenums: false
- pymdownx.superfences
- pymdownx.details
- pymdownx.highlight
- pymdownx.inlinehilite
- admonition
- toc:
baselevel: 2
permalink: true
slugify: !!python/object/apply:pymdownx.slugs.slugify {kwds: {case: lower}}
- meta
plugins:
- include-markdown
- autorefs
- termynal
- gen-files:
scripts:
- docs/gen_api_docs.py
- literate-nav:
nav_file: SUMMARY.md
- mkdocstrings:
handlers:
python:
paths: [ember_mug]
options:
docstring_options:
ignore_init_summary: true
docstring_section_style: table
allow_inspection: true
annotation_path: full
docstring_section_style: table
filters: ["!^_"]
find_stubs_package: true
inherited_members: true
member_order: alphabetical
modernize_annotations: true
group_by_category: true
separate_signature: true
show_category_heading: true
show_if_no_docstring: true
show_labels: true
show_root_heading: true
show_root_toc_entry: true
show_root_full_path: true
show_signature: true
show_signature_annotations: true
show_symbol_type_heading: true
show_symbol_type_toc: true
signature_crossrefs: true
- search:
lang: en
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/sopelj
name: Github
- icon: material/email
link: "mailto:[email protected]"