-
Notifications
You must be signed in to change notification settings - Fork 7
/
mkdocs.yml
104 lines (89 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
site_name: wom.py
plugins:
- search
- autorefs
- include-markdown
- mkdocstrings:
# custom_templates: docs/templates
handlers:
python:
options:
members_order: alphabetical
docstring_style: google
show_signature_annotations: true
separate_signature: true
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.superfences
- admonition
- pymdownx.details
- footnotes
- pymdownx.tabbed:
alternate_style: true
watch:
- wom
theme:
name: material
# custom_dir: docs/overrides
palette:
- scheme: slate
primary: deep purple
accent: purple
toggle:
icon: material/weather-night
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: light blue
accent: purple
toggle:
icon: material/weather-sunny
name: Switch to dark mode
font:
text: Noto Sans
code: Noto Sans Mono
logo: wom-logo.svg
favicon: wom-logo.png
features:
- navigation.instant
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
- content.tabs.link
icon:
repo: fontawesome/brands/github
extra:
version:
provider: mike
default: stable
social:
- icon: fontawesome/brands/python
link: https://pypi.org/project/wom.py/
name: PyPI
- icon: fontawesome/brands/github
link: https://github.com/Jonxslays/wom.py/
name: Source
copyright: Copyright © 2023-present Jonxslays
repo_name: Jonxslays/wom.py
repo_url: https://github.com/Jonxslays/wom.py/
site_url: https://jonxslays.github.io/wom.py/
nav:
- "index.md"
- "Modules":
- "reference/client.md"
- "reference/enums.md"
- "reference/errors.md"
- "reference/models.md"
- "reference/result.md"
- "reference/routes.md"
- "reference/serializer.md"
- "reference/services.md"
- "Getting started":
- "getting-started/installation.md"
- "getting-started/client.md"
- "getting-started/services.md"
- "getting-started/result.md"
- "Migration guides":
- "migrating/v1.md"