-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
48 lines (48 loc) · 1.11 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
site_name: signalrgb-python
site_description: A Python client library and CLI for controlling SignalRGB Pro
repo_url: https://github.com/hyperb1iss/signalrgb-python
theme:
name: material
palette:
primary: indigo
accent: pink
features:
- navigation.tabs
- navigation.sections
- toc.integrate
- search.suggest
- search.highlight
- content.tabs.link
- content.code.annotation
- content.code.copy
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- admonition
- pymdownx.details
- pymdownx.tabbed:
alternate_style: true
- tables
nav:
- Home: index.md
- Installation: installation.md
- Usage:
- CLI: usage/cli.md
- Python Library: usage/library.md
- API Reference:
- Client: api/client.md
- Models: api/models.md
- Development: development.md
- Contributing: contributing.md
plugins:
- search
- mkdocstrings:
handlers:
python:
paths: [.]
options:
docstring_style: google
show_source: true