-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yml
137 lines (131 loc) · 3.42 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
site_name: WebDSL
site_description: Documentation of the WebDSL domain-specific language for modeling web applications with a rich data model.
site_url: https://webdsl.github.io/webdsl-docs/
repo_url: https://github.com/webdsl/webdsl
edit_uri: https://github.com/webdsl/webdsl-docs/edit/main/docs
nav:
- Home:
- index.md
- Tutorials:
- tutorials/index.md
- tutorials/hello-world.md
- tutorials/pages-and-navigation.md
- tutorials/templates.md
- How-Tos:
- howtos/index.md
- howtos/install.md
- howtos/install-eclipse-bundle.md
- howtos/install-eclipse-plugin-manually.md
- howtos/install-cli.md
- Reference:
- reference/index.md
- reference/using-the-editor.md
- reference/cli-usage.md
- reference/webdsl-apps.md
- reference/app-configuration.md
- reference/production-server.md
- reference/lightweight-vps.md
- reference/request-processing.md
- reference/entities.md
- reference/session-entities.md
- reference/types.md
- reference/pages.md
- reference/forms.md
- reference/action-code.md
- reference/native-java-interface.md
- reference/validation.md
- reference/access-control.md
- reference/queries.md
- reference/testing.md
- reference/ajax.md
- reference/styling.md
- reference/search.md
- reference/advanced-search.md
- reference/send-email.md
- reference/recurring-tasks.md
- reference/https-encryption.md
- reference/services.md
- reference/synchronization-framework.md
- reference/mysql.md
- reference/examples.md
- reference/development.md
- Background:
- background/index.md
- background/about.md
- background/publications.md
- background/meeting-notes.md
- Support:
- support/index.md
- Releases:
- releases/index.md
theme:
name: material
custom_dir: overrides
language: en
logo: assets/logo.svg
favicon: assets/favicon.png
icon:
logo: fontawesome/solid/sticky-note
repo: fontawesome/brands/github
palette:
# Light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: orange
accent: cyan
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
# Dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: indigo
accent: red
toggle:
icon: material/toggle-switch
name: Switch to light mode
font:
code: JetBrains Mono
features:
- navigation.instant
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
- navigation.indexes
markdown_extensions:
- abbr
- admonition
- attr_list
- codehilite:
guess_lang: false
- def_list
- toc:
permalink: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.saneheaders
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tabbed
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
plugins:
- search
- git-revision-date:
enabled_if_env: CI
- macros
extra:
os:
windows: ":fontawesome-brands-windows: Windows"
linux: ":fontawesome-brands-linux: Linux"
macos: ":fontawesome-brands-apple: macOS"