-
Notifications
You must be signed in to change notification settings - Fork 9
/
mkdocs.yml
107 lines (102 loc) · 2.43 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
site_name: Northstar Documentation
site_url: https://docs.northstar.tf/
site_description: "The official documentation and wiki for Northstar"
repo_url: https://github.com/R2Northstar/NorthstarDocs
edit_uri: blob/main/docs/
theme:
name: material
palette:
# Palette toggle for automatic mode
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to system preference
features:
- announce.dismiss
- content.action.edit
- content.action.view
- content.code.annotate
- content.code.copy
- content.tooltips
- navigation.footer
- navigation.indexes
- navigation.sections
- navigation.tabs
- navigation.top
- navigation.tracking
- search.highlight
- search.share
- search.suggest
- toc.follow
- navigation.instant
- navigation.instant.prefetch
icon:
edit: material/pencil
view: material/eye
validation:
omitted_files: warn
absolute_links: warn
unrecognized_links: warn
anchors: warn
plugins:
- group:
plugins:
- privacy
enabled: !ENV CI
- search
- social
- git-authors:
enabled_on_serve: false
exclude:
- index.md
ignore_commits: .git-blame-ignore-revs
show_email_address: false
strict: true
- link-embeds:
enabled: true
- mkdocs-video
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- md_in_html
- footnotes
- pymdownx.betterem
- pymdownx.caret
- pymdownx.mark
- pymdownx.tilde
- pymdownx.details
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.smartsymbols
- pymdownx.snippets
- toc:
permalink: true
- pymdownx.highlight:
use_pygments: true
linenums_style: pymdownx-inline
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
extra_css:
- stylesheets/extra.css
- stylesheets/link-embeds.css