-
Notifications
You must be signed in to change notification settings - Fork 3
/
mkdocs.yml
45 lines (39 loc) · 1.09 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
site_name: Aioinject
site_description: Async-first python dependency injection library
repo_url: https://github.com/ThirVondukr/aioinject
nav:
- About: index.md
- Providers: providers.md
- Context manager dependencies: context-managers.md
- Extensions: extensions.md
- Integrations:
- Aiogram: integrations/aiogram.md
- FastAPI: integrations/fastapi.md
- Litestar: integrations/litestar.md
- Strawberry GraphQL: integrations/strawberry-graphql.md
- Cook Book: cookbook.md
theme:
name: material
features:
- content.code.annotate
- content.code.copy
- content.code.select
palette:
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: pink
toggle:
icon: material/brightness-4
- media: "(prefers-color-scheme: light)"
scheme: default
primary: pink
toggle:
icon: material/brightness-7
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences