-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
86 lines (80 loc) · 1.86 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
site_name: Tokamak
site_description: An HTTP router for Python projects based on radix trees.
repo_name: erewok/tokamak
repo_url: https://github.com/erewok/tokamak
edit_uri: ""
extra_css:
- css/mkdocstrings.css
nav:
- Home: 'index.md'
- Routing: 'routing.md'
- Experimental Web Framework:
- Application: 'web.md'
- Code Reference: reference/
theme:
name: material
logo: donut.png
features:
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: teal
accent: purple
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: lime
toggle:
icon: material/weather-night
name: Switch to light mode
markdown_extensions:
- admonition
- callouts:
strip_period: no
- pymdownx.emoji
- pymdownx.magiclink
- pymdownx.snippets:
check_paths: true
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist
- toc:
permalink: "§"
plugins:
- search
- markdown-exec
- gen-files:
scripts:
- docs/gen_ref_nav.py
- literate-nav:
nav_file: nav.md
- section-index
- mkdocstrings:
handlers:
python:
paths: [tokamak]
import:
- https://docs.python.org/3/objects.inv
- https://mkdocstrings.github.io/objects.inv
- https://mkdocstrings.github.io/griffe/objects.inv
options:
docstring_style: google
docstring_options:
ignore_init_summary: no
merge_init_into_class: yes
separate_signature: yes
show_source: no
show_root_full_path: no
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/erewok
- icon: fontawesome/brands/twitter
link: https://twitter.com/erewok