-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmkdocs.yml
60 lines (51 loc) · 1.33 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
site_name: pytheus
theme:
name: material
features:
- content.code.copy
- navigation.sections
icon:
repo: fontawesome/brands/github
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/toggle-switch
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/toggle-switch-off-outline
name: Switch to light mode
repo_name: Llandy3d/pytheus
repo_url: https://github.com/Llandy3d/pytheus
nav:
- Introduction: 'index.md'
- Architecture: 'architecture.md'
- Usage:
- Quickstart: quickstart.md
- Labels: labels.md
- Counter: counter.md
- Gauge: gauge.md
- Histogram: histogram.md
- Summary: summary.md
- Registry: registry.md
- Backend / Multiprocessing: backend.md
- Rust Backend 🦀: rust_backend.md
- Custom Collector: custom_collector.md
- Tutorial:
- FastAPI: fastapi.md
- Reference:
- Quickref: quickref.md
- Changelog: changelog.md
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- admonition