-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
47 lines (47 loc) · 1.25 KB
/
mkdocs.yml
File metadata and controls
47 lines (47 loc) · 1.25 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
site_name: Logging with context Documentation
theme:
name: material
font:
text: Merriweather Sans
code: Red Hat Mono
icon:
logo: octicons/log-24
palette:
- scheme: slate
primary: green
accent: deep purple
toggle:
icon: material/weather-sunny
name: Dark mode
- scheme: default
primary: blue
accent: deep orange
toggle:
icon: material/weather-night
name: Light mode
markdown_extensions:
# Adds syntax highlight to code blocks.
# Uses pygments as the backend.
# pymdownx extensions can be consulted here: https://facelessuser.github.io/pymdown-extensions/extensions/
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
# Syntax highlight for single-line code.
- pymdownx.inlinehilite
# Insert Markdown or HTML inside other Markdown documents.
# Process the snippets once and inserts them in multiple documents.
- pymdownx.snippets
# Allow nesting fences, needed for syntax highlight.
- pymdownx.superfences
plugins:
- mkdocstrings:
default_handler: python
nav:
- Introduction: index.md
- howto.md
- API:
- api/global_context.md
- api/adapters.md
- api/formatters.md
- api/filters.md