-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
260 lines (259 loc) · 6.54 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
---
# Source: https://github.com/jmuelbert/checkconnect/blob/main/workflow-templates/assets/mkdocs/mkdocs.yml
# See: https://www.mkdocs.org/user-guide/configuration/
# Project Information
site_name: checkconnect
site_url: https://io.github.org/jmuelbert/checkconnect/
site_description: >-
A tester for differt hosts for available.
# Repository
repo_name: jmuelbert/checkconnect
repo_url: https://github.com/jmuelbert/checkconnect/
edit_uri: blob/main/docs/
# Copyright
copyright: Copyright © 2023 - 2024 Jürgen Mülbert
# Configuration
docs_dir: docs
site_dir: site
theme:
name: material
custom_dir: docs/.overrides
# Static files
static_templates:
- 404.html
# Default values, taken from mkdocs_theme.yml
language: en
direction: ltr
features:
- announce.dismiss
- content.action.edit
- content.action.view
- content.code.annotate
- content.code.copy
- content.tabs.link
- content.tooltips
- header.autohide
# - navigation.expand
- navigation.footer
- navigation.indexes
# - navigation.instant
# - navigation.instant.prefetch
# - navigation.instant.progress
- navigation.path # Not compatible with navigation.expand
- navigation.prune
- navigation.sections
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
- navigation.tracking
- search.highlight
- search.share
- search.suggest
- toc.follow
- toc.integrate
palette:
# 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 light mode
font:
text: Roboto
code: Roboto Mono
extra_css:
- css/custom.css
icon:
repo: fontawesome/brands/github-alt
logo: material/check-network-outline
# Page tree
nav:
- Introduction: index.md
- QuickStart: quickstart.md
- Philosophy: philosophy.md
- Upgrade: upgrade.md
# - Advanced:
- Guides:
- Command Line: guides/commandline.md
- Configuration: guides/configuration.md
- Installation: guides/install.md
- Logging: guides/logging.md
- Troubleshooting: guides/troubleshooting.md
- Develop:
- Environment Variables: developer/environment_variables.md
- Changelog: developer/changelog.md
- Release Notes: developer/release-notes.md
- API: developer/overview.md
- CLI: developer/cli.md
- Core: developer/core.md
- Configuration: developer/configuration.md
- Community:
- faq: community/faq.md
- Contributing: community/contributing.md
- Code of Conduct: community/code_of_conduct.md
- Third Party Packages: community/third_party_packages.md
- About:
- Authors: about/authors.md
- License: about/EUPL-1.2.md
# Plugins
plugins:
i18n:
docs_structure: suffix
languages:
- locale: en
default: true
name: English
build: true
- locale: de
name: Deutsch
build: true
- locale: it
name: Italiano
build: false
- locale: es
name: Español
build: false
# Enable for bug reports
# info: {}
# Built-in
search:
separator: '[\s\-,:!=\[\]()"`/]+|\.(?!\d)|&[lg]t;|(?!\b)(?=[A-Z][a-z])'
autorefs: {}
codeinclude: {}
# Extra
glightbox: {}
minify:
minify_html: true
table-reader: {}
mike:
alias_type: copy
material/social: {}
material/tags: {}
mkdocstrings:
enable_inventory: true
default_handler: python
handlers:
python:
paths: [src]
options:
show_root_heading: true
show_object_full_path: false
show_category_heading: false
show_bases: true
show_submodules: false
show_if_no_docstring: false
show_signature: false
heading_level: 1
filters: ['!^_']
render_swagger: {}
redirects:
redirect_maps:
conventions.md: philosophy.md
upgrading.md: upgrade.md
# Markdown Extensions
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- toc:
# reduced to keep TOC nice under Changelog page
toc_depth: 2
permalink: true
- tables
- codehilite:
css_class: highlight
# Standard mkdocs Extensions
- mkdocs-click
- mkautodoc
# Python Markdown Extensions
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.mark
- pymdownx.tilde
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight:
guess_lang: false
linenums_style: pymdownx-inline
use_pygments: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink:
repo_url_shortener: true
repo_url_shorthand: true
social_url_shortener: true
social_url_shorthand: true
normalize_issue_symbols: true
provider: github
user: jmuelbert
repo: checkconnect
- pymdownx.mark
- pymdownx.progressbar
- pymdownx.saneheaders
- pymdownx.smartsymbols
- pymdownx.snippets:
check_paths: true
base_path:
- docs/.snippets
auto_append:
- links.txt
- abbrs.txt
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
slugify: !!python/object/apply:pymdownx.slugs.slugify
kwds:
case: lower
- pymdownx.tasklist:
custom_checkbox: true
# Customization
extra:
version:
provider: mike
alternate:
- name: English
link: /en/
lang: en
- name: Deutsch
link: /de/
lang: de
- name: Italiano
link: /it/
lang: it
- name: Español
link: /es/
lang: es
social:
- icon: fontawesome/brands/github
link: https://github.com/jmuelbert
- icon: fontawesome/brands/gitter
link: https://gitter.im/jmuelbert/checkconnect
- icon: fontawesome/brands/docker
link: https://hub.docker.com/r/jmuelbert/checkconnect/
- icon: fontawesome/brands/python
link: https://pypi.org/project/checkconnect/
- icon: fontawesome/brands/twitter
link: https://twitter.com/jmuelbert
watch:
- mkdocs.yml
- src/
- docs/