-
Notifications
You must be signed in to change notification settings - Fork 63
/
mkdocs.yml
97 lines (93 loc) · 2.4 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
site_name: jte
site_description: "Secure and speedy templates for Java and Kotlin"
repo_url: https://github.com/casid/jte/
site_url: https://jte.gg/
theme:
icon:
repo: fontawesome/brands/github
language: en
name: material
features:
- navigation.top
- navigation.sections
- navigation.expand
- navigation.footer
- navigation.instant
- navigation.instant.progress
- search.highlight
- content.code.copy
- content.tabs.link
- content.code.select
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: teal
accent: teal
toggle:
icon: material/lightbulb
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: teal
accent: teal
toggle:
icon: material/lightbulb-outline
name: Switch to light mode
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/casid/jte
markdown_extensions:
- meta
- abbr
- admonition
- tables
- attr_list
- md_in_html
- toc:
permalink: true
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.caret
- pymdownx.mark
- pymdownx.tilde
- pymdownx.tabbed:
alternate_style: true
plugins:
- awesome-pages
- search
- latest-git-tag
- mkdocs-pom-parser-plugin:
path: pom.xml
nav:
- "Home":
- "Getting Started": index.md
- "Templates":
- "Rendering a Template": rendering-a-template.md
- "Templates Syntax": syntax.md
- "HTML Rendering": html-rendering.md
- "Build Tools":
- "Maven Plugin": maven-plugin.md
- "Gradle Plugin": gradle-plugin.md
- "How To":
- "Hot Reloading": hot-reloading.md
- "Precompiling Templates": pre-compiling.md
- "Binary Rendering": binary-rendering.md
- "Localization": localization.md
- "Kotlin Templates": kotlin.md
- "Extensions":
- "jte-models Facade Generator": jte-models.md
- "Extensions API": jte-extension-api.md
- "Spring Boot Support":
- "Spring Boot Starter 3": spring-boot-starter-3.md
- "Spring Boot Starter 2": spring-boot-starter-2.md
- "Migrate to jte":
- "Migrating to jte": migrating-to-jte.md
- "JSP Converter": jsp-converter.md