-
Notifications
You must be signed in to change notification settings - Fork 0
/
_config.yml
197 lines (177 loc) · 4.09 KB
/
_config.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
# Site settings
title: Documentation
description: Documentation
# URLs
baseurl: ""
url: ""
permalink: pretty
# Theme
theme: "just-the-docs"
color_scheme: wiit
# i18n
languages: ["en", "de"]
default_lang: "en"
exclude_from_localization: ["_sass", "README.md", "javascript", "images", "css", "public"]
# WORKAROUND: Disable parallel builds due to Windows systems not supporting this feature
# See <https://github.com/untra/polyglot#compatibility>
parallel_localization: false
language_labels:
en: English
de: Deutsch
nav_external_links: []
# Footer
footer_navigation:
previous:
de: Zurück
en: Previous
next:
de: Weiter
en: Next
footer_external_links:
de:
- label: Website
url: https://wiit.cloud
- label: Impressum
url: https://www.myloc.de/impressum.html
- label: Datenschutz
url: https://gec.io/datenschutz/
en:
- label: Website
url: https://wiit.cloud
- label: Imprint
url: https://www.myloc.de/impressum.html
- label: Data Privacy
url: https://gec.io/datenschutz/
footer_hosted_with_love:
de:
label: "Mit liebe gehostet bei GitHub"
url: https://github.com/wiit-ag/docs
en:
label: "Hosted with love on GitHub"
url: https://github.com/wiit-ag/docs
# Plugins
plugins:
- jekyll-polyglot
# Styles
# WORKAROUND
# We disable sourcemaps, otherwhise i18n via polyglot leads to broken styles compiled from scss
# See <https://github.com/untra/polyglot#compatibility>, <https://github.com/untra/polyglot/issues/107#issuecomment-598274075>
sass:
sourcemap: never
# Markdown
kramdown:
syntax_highlighter_opts:
block:
line_numbers: false
# HTML
compress_html:
clippings: all
comments: all
endings: all
startings: []
blanklines: false
profile: false
# Build
exclude:
[
"node_modules/",
"just-the-docs.gemspec",
"Gemfile",
"Gemfile.lock",
"package.json",
"package-lock.json",
"script/",
"LICENSE.txt",
"lib/",
"bin/",
"README.md",
"Rakefile",
"docs/tests/",
]
# Collections
collections:
ece:
output: true
sort_by: nav_order
optimist:
output: true
sort_by: nav_order
edge:
output: true
sort_by: nav_order
managedk8s:
output: true
sort_by: nav_order
collections_dir: docs
defaults:
- scope:
path: "**/*.md"
type: "ece"
values:
layout: "default"
- scope:
path: "**/*.md"
type: "optimist"
values:
layout: "default"
- scope:
path: "**/*.md"
type: "edge"
values:
layout: "default"
- scope:
path: "**/*.md"
type: "managedk8s"
values:
layout: "default"
just_the_docs:
# Define which collections are used in just-the-docs
collections:
# Reference the "docs" collection
ece:
name: Elastic Cloud Enterprise
nav_exclude: false
search_exclude: false
edge:
name: Oncite Open Edition
nav_exclude: false
search_exclude: false
optimist:
# Give the collection a name
name: Optimist
# Exclude the collection from the navigation
# Supports true or false (default)
nav_exclude: false
# Exclude the collection from the search
# Supports true or false (default)
search_exclude: false
managedk8s:
name: Managed Kubernetes
nav_exclude: false
search_exclude: false
# To disable support for mermaid diagrams (https://mermaid-js.github.io/mermaid/),
# comment out the `mermaid` and `version` keys below
# By default, consuming the theme as a gem leaves mermaid disabled; it is opt-in
mermaid:
# Version of mermaid library
# Pick an available version from https://cdn.jsdelivr.net/npm/mermaid/
version: "9.1.6"
# Put any additional configuration, such as setting the theme, in _includes/mermaid_config.js
# See also docs/ui-components/code
gh_edit_link: false # show or hide edit this page link
callouts_level: quiet # or loud
callouts:
highlight:
color: yellow
important:
title: Important
color: blue
new:
title: New
color: green
note:
title: Note
color: purple
warning:
title: Warning
color: red