forked from KeYProject/key-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
162 lines (148 loc) · 4.19 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
site_name: KeY Developer Documentation
plugins:
- search
- bibtex:
bib_file: "refs.bib"
cite_style: "pandoc"
# csl_file: "springer-basic-author-date.csl"
markdown_extensions:
- abbr
- admonition
- pymdownx.highlight
- footnotes
- meta
- md_in_html
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.magiclink
- pymdownx.tabbed:
alternate_style: true
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_div_format
# format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
- attr_list
- def_list
- tables
- toc:
permalink: true
- markdown_aafigure:
format: svg
- markdown_blockdiag:
format: svg
extra_javascript:
- 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-MML-AM_CHTML'
- 'https://cdn.jsdelivr.net/npm/mermaid/dist/mermaid.min.js'
# - "js/javajml.js"
#copyright: Copyright © 2016 - 2020 Martin Donath
theme: # material theme
name: material
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: 'blue grey'
accent: 'teal'
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: 'dark'
accent: 'orange'
toggle:
icon: material/toggle-switch
name: Switch to light mode
features:
- navigation.tabs
- navigation.sections
- navigation.expand
- navigation.indexes
- navigation.top
- content.code.annotate
icon:
repo: fontawesome/brands/gitlab
# palette:
# primary: 'blue grey'
# accent: 'teal'
nav:
- Home: index.md
- User Guide:
- user/index.md
- user/FAQ.md
- user/ADTs.md
- user/Classpath.md
- user/Interactive.md
- user/JavaDLinJML.md
- user/RemoveGenerics.md
- user/Polarity.md
- UI Features:
- user/Exploration.md
- user/NodeDiff.md
- Languages:
- user/HowToTaclet.md
- user/JMLGrammar.md
- user/KeyGrammar.md
- Proof Scripts:
- workbench/Proof Scripts/index.md
- workbench/Proof Scripts/commands.md
- workbench/Proof Scripts/language.md
- workbench/Proof Scripts/linearScripts.md
- workbench/Proof Scripts/macros.md
- workbench/Proof Scripts/variables.md
- KeYclipse:
- "Overview": eclipse
- "KeY basics": eclipse/CrossProject/
- "SED": eclipse/SED
- "Stubby": eclipse/Stubby
# - eclipse/General
- "KeY IDE": eclipse/KeYIDE
- "MonKeY": eclipse/MonKeY
- "Starter": eclipse/Starter
- "VisualDBC": eclipse/VisualDbC
- "JML Editing": eclipse/JMLEditing
- "Resources" : eclipse/KeYResources
- Development:
- "Start": devel/index.md
- devel/Architecture.md
- devel/CodingConventions.md
- devel/SpotlessAutomaticFormatting.md
- devel/ExternalProject.md
- devel/Gradle.md
- devel/GUIExtensions.md
- devel/How2ExtRecoder.md
- devel/howtodoc.md
- devel/HowtoTaclet.md
- devel/AddingSMTSolvers.md
- devel/SMTTranslation.md
- Testing:
- devel/Testing/index.md
- devel/ProveRules.md
- devel/Testing/ProveRules.md
- devel/Testing/RunAllProves.md
- devel/Testing/deterministicTestOrder.md
- devel/Testing/parserMessageTest.md
- Write Documentation: "devel/howtodoc"
# nav_style: dark
# logo: 'https://git.key-project.org/uploads/-/system/appearance/logo/1/key-color.png'
#feature:
# tabs: true
repo_type: gitlab
repo_name: key-docs
repo_url: https://git.key-project.org/key/key-docs/
edit_uri: edit/master/docs/