-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
135 lines (119 loc) · 3.59 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
# Project information
site_name: Embedded CI/CD
site_description: A framework for building an individual CI/CD pipeline geared towards embedded systems and FOSS. Get started today!
site_author: Matthias Kolja Miehl
site_url: https://embedded-cicd.org/
# Repository
repo_name: makomi/embedded_cicd
repo_url: https://github.com/makomi/embedded_cicd/
#edit_uri: ""
# Copyright
#copyright: GPLv3
# Social media
# -> Update data protection declaraction!
#extra:
# social:
# - type: globe
# link: http://wobsite.net
# - type: github-alt
# link: https://github.com/makomi
# - type: twitter
# link: https://twitter.com/embedded_cicd
# Configuration
theme:
#name: material
name: null
custom_dir: material_for_mkdocs
# Don't include MkDocs' JavaScript.
# See ./material_for_mkdocs/mkdocs_theme.yml for details.
include_search_page: false
search_index_only: true
language: en
palette:
primary: indigo
accent: indigo
favicon: assets/images/favicon.png
#logo: img/logo.png
logo:
icon: memory # build code # https://material.io/tools/icons/?style=baseline
#favicon: img/favicon.png
font: false
#font:
# text: Roboto
# code: Roboto Mono
shortcuts:
# https://keycode.info/
help: 191 # ?
next: 78 # n
previous: 80 # p
search: 83 # s
feature:
tabs: true
# Plugins
plugins:
- search
# Extensions
# https://yakworks.github.io/mkdocs-material-components/cheat-sheet/
# https://yakworks.github.io/mkdocs-material-components/blocks/
markdown_extensions:
- markdown.extensions.admonition # https://squidfunk.github.io/mkdocs-material/extensions/admonition/#types
- markdown.extensions.codehilite:
guess_lang: false
- markdown.extensions.def_list
- markdown.extensions.fenced_code
- markdown.extensions.footnotes
# The following extensions are activated by default for MkDocs:
- markdown.extensions.meta
- markdown.extensions.nl2br
- markdown.extensions.sane_lists
- markdown.extensions.smarty
- markdown.extensions.tables
- markdown.extensions.toc:
permalink: true
separator: "_"
# The following extensions are recommended to be used together with the Material theme:
# https://squidfunk.github.io/mkdocs-material/extensions/pymdown/
#- 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.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
# Navigation
nav:
- Overview:
- Welcome: index.mkd
- 'Getting started': getting_started.mkd
- 'Release notes': release_notes.mkd
- Milestones: milestones.mkd
- Contributing: contributing.mkd
- 'Legal matters':
- License: license.mkd
- Impressum: impressum.mkd
- Datenschutz: datenschutz.mkd
- About: about.mkd
- 'Body of Knowledge':
- Introduction: body_of_knowledge/index.mkd
- Glossary: body_of_knowledge/glossary.mkd
- Principles:
- CI/CD: body_of_knowledge/cicd.mkd
- Testing: body_of_knowledge/testing.mkd
- Architecture: body_of_knowledge/architecture.mkd
- Resources: body_of_knowledge/resources.mkd
- Tools: body_of_knowledge/tools.mkd
- 'Automatic Builds':
- Introduction: automatic_builds/index.mkd
- Requirements: automatic_builds/requirements.mkd
- 'Release Candidates':
- Introduction: release_candidates/index.mkd
- Requirements: release_candidates/requirements.mkd