-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
53 lines (50 loc) · 1.28 KB
/
mkdocs.yml
File metadata and controls
53 lines (50 loc) · 1.28 KB
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
site_name: httpware
site_url: https://httpware.modern-python.org
repo_url: https://github.com/modern-python/httpware
docs_dir: docs
edit_uri: edit/main/docs/
nav:
- Quick-Start: index.md
- Resilience: resilience.md
- Middleware: middleware.md
- Errors: errors.md
- Testing: testing.md
- Recipes:
- modern-di: recipes/modern-di.md
- Phase decorator patterns: recipes/phase-decorator-patterns.md
- Link header pagination: recipes/link-header-pagination.md
- Development:
- Contributing: dev/contributing.md
theme:
name: material
features:
- content.code.copy
- content.action.edit
- navigation.footer
- navigation.sections
- navigation.top
- header.autohide
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: black
accent: pink
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: pink
toggle:
icon: material/brightness-4
name: Switch to system preference
markdown_extensions:
- toc:
permalink: true
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.superfences
- admonition
- attr_list