-
Notifications
You must be signed in to change notification settings - Fork 13
/
mkdocs.yml
66 lines (57 loc) · 1.31 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
site_name: "di"
site_description: Simple pythonic dependency injection
site_url: https://www.adriangb.com/di
theme:
name: "material"
custom_dir: docs/overrides
palette:
- scheme: "default"
primary: "black"
accent: "amber"
media: "(prefers-color-scheme: light)"
toggle:
icon: "material/weather-night"
name: "Switch to dark mode"
- scheme: "slate"
primary: "black"
accent: "amber"
media: "(prefers-color-scheme: dark)"
toggle:
icon: "material/weather-sunny"
name: "Switch to light mode"
repo_name: adriangb/di
repo_url: https://github.com/adriangb/di
edit_uri: "blob/main/docs/"
nav:
- Intro: README.md
- Examples: examples.md
- Architecture: architecture.md
- Wiring: wiring.md
- Scopes: scopes.md
- Registration and Binding: binds.md
- Dependents: dependents.md
- Caching: cache.md
- Solving: solving.md
- API Interface: api.md
- Contributing: contributing.md
markdown_extensions:
- admonition
- pymdownx.highlight
- pymdownx.snippets
- pymdownx.superfences
- attr_list
- md_in_html
extra_css:
- css/termynal.css
- css/custom.css
extra_javascript:
- js/termynal.js
- js/custom.js
extra:
version:
provider: mike
plugins:
- mkdocstrings
- mike:
version_selector: true
- search: