-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
35 lines (30 loc) · 737 Bytes
/
mkdocs.yml
File metadata and controls
35 lines (30 loc) · 737 Bytes
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
site_name: python-meteolux
site_url: https://github.com/sim0nx/python-meteolux
repo_url: https://github.com/sim0nx/python-meteolux
theme:
name: "material"
font: false
plugins:
- search
- mkdocstrings:
handlers:
python:
options:
extensions:
- griffe_typingdoc
- griffe_pydantic:
schema: true
inventories:
- https://docs.pydantic.dev/latest/objects.inv
markdown_extensions:
- pymdownx.highlight:
linenums: true
linenums_style: pymdownx-inline
- pymdownx.superfences
- admonition
nav:
- Home: 'index.md'
- API Documentation:
- 'async api': 'async_api.md'
- 'models': 'models.md'
- 'exceptions': 'exceptions.md'