-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmkdocs.yml
More file actions
81 lines (76 loc) · 1.76 KB
/
mkdocs.yml
File metadata and controls
81 lines (76 loc) · 1.76 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
71
72
73
74
75
76
77
78
79
80
site_name: EAGLE Meter Reader
site_description: Python library and documentation for the Rainforest EAGLE 200 Gateway.
site_author: Emmanuel
repo_url: https://github.com/eman/meter_reader
repo_name: meter_reader
theme:
name: material
palette:
# Light mode
- scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Dark mode
- scheme: slate
primary: indigo
accent: indigo
toggle:
icon: material/brightness-4
name: Switch to light mode
font:
text: Roboto
code: Roboto Mono
icon:
repo: fontawesome/brands/github
features:
- content.code.copy
- content.code.select
- content.code.annotate
- navigation.expand
- navigation.indexes
- navigation.instant
- navigation.sections
- navigation.tabs
- navigation.top
- search.highlight
- search.suggest
- toc.follow
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- admonition
- pymdownx.details
- attr_list
- md_in_html
- tables
nav:
- Home: index.md
- Library API:
- Clients: api/clients.md
- Configuration: api/config.md
- Models: api/models.md
- Device API:
- Socket API (Port 5002): socket_api.md
- HTTP API (OpenAPI): http_api.md
plugins:
- search
- render_swagger
- mkdocstrings:
handlers:
python:
options:
show_source: true
show_root_heading: true
show_root_full_path: false
members_order: source
heading_level: 2