-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
48 lines (48 loc) · 1.48 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
site_name: Templado Documentation
site_description: Documentation for Templado 5.x
site_author: Arne Blankerts <arne@blankerts.de> and contributors
copyright: Copyright © 2023, Arne Blankerts and contributors
site_url: https://docs.templado.io/
repo_url: https://github.com/templado/documentation
edit_uri: blob/main/src/
docs_dir: src
site_dir: build/public
nav:
- Getting Started:
- Installation: install.md
- First Steps: first-steps.md
- Features:
- View Model Rendering: features/view-model.md
- Form Handling: features/form-handling.md
- Merging Documents: features/merge.md
- Applying Transformations: features/transformation.md
- Controlling the Serializing: features/serializing.md
- Extending Templado:
- Creating Transformations: extend/transformations.md
- Creating Filters: extend/filters.md
- Creating Selectors: extend/selectors.md
- Custom Serialization: extend/serializers.md
- Migration:
- Templado 4.x: migrate/templado4.md
- Resources:
- Project Homepage: https://templado.io
- Source Code: https://github.com/templado/engine
- Issue Tracker: https://github.com/templado/engine/issues
not_in_nav: |
*index.md
theme:
name: readthedocs
highlightjs: false
logo: img/templado-logo.svg
extra_css:
- highlight/github.min.css
- css/templado.css
extra_javascript:
- highlight/highlight.min.js
- highlight/all.js
markdown_extensions:
- callouts
- tables
plugins:
- search
- macros