-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
68 lines (61 loc) · 1.64 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
site_name: runningman
theme:
name: "material"
logo: assets/logo.jpg
favicon: assets/logo.jpg
features:
- navigation.instant
- navigation.path
- navigation.top
palette:
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: "#002d72"
accent: indigo
toggle:
icon: material/weather-sunny
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: "#002d72"
accent: indigo
toggle:
icon: material/weather-night
name: Switch to dark mode
icon:
repo: fontawesome/brands/github
repo_url: https://github.com/danielk333/runningman
extra_css:
- assets/style.css
plugins:
- search
- section-index
- gen-files:
scripts:
- scripts/generate_api_docs.py
- literate-nav:
nav_file: nav.md
- mkdocstrings:
handlers:
python:
options:
docstring_style: numpy
docstring_section_style: table
show_docstring_functions: true
show_docstring_modules: true
show_docstring_description: true
- mkdocs-jupyter:
execute: false
include_source: True
ignore: ["_wip*"]
nav:
- Home: index.md
- Getting started: getting_started.md
- Examples:
- examples/index.md
- network_control: examples/network_control.py
- network_trigger: examples/network_trigger.py
- timed_triggered_service: examples/timed_triggered_service.py
- triggered_provider_with_service: examples/triggered_provider_with_service.py
- watch_folder_provider: examples/watch_folder_provider.py
- Reference: reference/