-
Notifications
You must be signed in to change notification settings - Fork 7
/
mkdocs.yml
57 lines (52 loc) · 1.44 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
site_name: "Diator"
site_description: Diator is a Python library for implementing CQRS pattern in your Python applications.
site_url: https://akhundmurad.github.io/diator/
theme:
name: "material"
features:
- navigation.instant
palette:
- scheme: "default"
primary: "red"
accent: "amber"
media: "(prefers-color-scheme: light)"
toggle:
icon: "material/weather-night"
name: "Switch to dark mode"
- scheme: "slate"
primary: "red"
accent: "amber"
media: "(prefers-color-scheme: dark)"
toggle:
icon: "material/weather-sunny"
name: "Switch to light mode"
repo_name: akhundMurad/diator
repo_url: https://github.com/akhundMurad/diator
edit_uri: "blob/main/docs/"
nav:
- Introduction: index.md
- Examples: examples.md
- Architecture: architecture.md
- Requests: requests.md
- Events: events.md
- Dependency Injection: di.md
- Middlewares: middlewares.md
- Contributing: contributing.md
markdown_extensions:
- admonition
- pymdownx.highlight
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- attr_list
- md_in_html
plugins:
- mkdocstrings
- search: