-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
86 lines (72 loc) · 2.18 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: wraps
site_author: nekitdev
site_description: Meaningful and safe wrapping types.
repo_name: nekitdev/wraps
repo_url: https://github.com/nekitdev/wraps
remote_branch: github-pages
nav:
- Index: "index.md"
- Reference:
- Option: "reference/option.md"
- Result: "reference/result.md"
- Either: "reference/either.md"
- Early:
- Decorators: "reference/early/decorators.md"
- Errors: "reference/early/errors.md"
- Futures:
- ReAwaitable: "reference/futures/reawaitable.md"
- Future: "reference/futures/future.md"
- Option: "reference/futures/option.md"
- Result: "reference/futures/result.md"
- Either: "reference/futures/either.md"
- Typing: "reference/futures/typing.md"
- Parse:
- Simple: "reference/parse/simple.md"
- Normal: "reference/parse/normal.md"
- Format: "reference/parse/format.md"
- Markers: "reference/markers.md"
- Panics: "reference/panics.md"
- Errors: "reference/errors.md"
- Typing: "reference/typing.md"
- Changelog: "changelog.md"
- Security: "security.md"
- Code of Conduct: "code_of_conduct.md"
- Contributing: "contributing.md"
watch:
- docs
- src
theme:
name: material
palette:
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: deep purple
accent: light blue
toggle:
icon: material/toggle-switch-off-outline
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: light blue
accent: deep purple
toggle:
icon: material/toggle-switch
name: Switch to dark mode
plugins:
- search
- mkdocstrings:
handlers:
python:
options:
members_order: source
show_symbol_type_heading: true
show_symbol_type_toc: true
show_signature_annotations: true
import:
- https://docs.python.org/3/objects.inv
- http://nekitdev.github.io/typing-aliases/objects.inv
markdown_extensions:
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences