-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
91 lines (84 loc) · 1.89 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# Project information
site_name: Grafana/Golang Observability
site_description: Demo app for observability with golang
site_author: Matt Vinall
site_url: https://boyvinall.github.io/observability-demo
# Repository
repo_url: https://github.com/boyvinall/observability-demo
edit_uri: 'edit/main/docs'
# Navigation
docs_dir: docs
nav:
- index.md
- logging.md
- tracing.md
- about-docs.md
# Configuration
theme:
features:
- toc.follow
- content.code.copy
name: 'material'
language: 'en'
palette:
# Palette toggle for light mode
- scheme: default
media: "(prefers-color-scheme: light)"
primary: indigo
accent: indigo
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
media: "(prefers-color-scheme: dark)"
primary: black
accent: indigo
toggle:
icon: material/brightness-4
name: Switch to light mode
font:
text: 'Roboto'
code: 'Roboto Mono'
# logo:
# Extensions
markdown_extensions:
- attr_list
- admonition
- footnotes
- meta
- tables
- smarty
- def_list
- fenced_code
- sane_lists
- pymdownx.highlight:
linenums: true
linenums_style: pymdownx-inline
anchor_linenums: true
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_generator: !!python/name:pymdownx.emoji.to_svg
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.snippets:
dedent_subsections: true
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
- codehilite:
guess_lang: false
- toc:
permalink: true
- plantuml_markdown:
server: http://www.plantuml.com/plantuml
# Customization
extra_css: [css/extra.css]