-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmkdocs.yml
More file actions
73 lines (69 loc) · 2.27 KB
/
Copy pathmkdocs.yml
File metadata and controls
73 lines (69 loc) · 2.27 KB
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
site_name: Kraft
site_description: Compile-time mapper generation for Kotlin Multiplatform
site_url: https://blu3berry-why.github.io/Kraft/
repo_url: https://github.com/blu3berry-why/Kraft
repo_name: blu3berry-why/Kraft
theme:
name: material
palette:
- scheme: slate
primary: custom
accent: custom
toggle:
icon: material/brightness-4
name: Switch to light mode
- scheme: default
primary: custom
accent: custom
toggle:
icon: material/brightness-7
name: Switch to dark mode
features:
- navigation.sections
- navigation.expand
- navigation.top
- search.highlight
- search.suggest
- content.code.copy
extra_css:
- stylesheets/extra.css
markdown_extensions:
- admonition
- attr_list
- md_in_html
- pymdownx.details
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.tabbed:
alternate_style: true
- toc:
permalink: true
nav:
- Home: index.md
- User Guide:
- Getting Started: user-guide/getting-started.md
- Basic Mapping: user-guide/basic-mapping.md
- Field Renaming: user-guide/field-renaming.md
- Nested Mapping: user-guide/nested-mapping.md
- Collection Mapping: user-guide/collection-mapping.md
- Enum Mapping: user-guide/enum-mapping.md
- Custom Converters: user-guide/custom-converters.md
- Ignore Rules: user-guide/ignore-rules.md
- Configuration Objects: user-guide/configuration-objects.md
- Reverse Mapping: user-guide/reverse-mapping.md
- KSP Options: user-guide/ksp-options.md
- Side Aliases: user-guide/side-aliases.md
- AI Integration: user-guide/ai-integration.md
- API-First Client Design: user-guide/api-first-client-design.md
- Developer Guide:
- Architecture: developer-guide/architecture.md
- Contributing: developer-guide/contributing.md
- Custom Code Generator: developer-guide/custom-code-generator.md
- Testing the Processor: developer-guide/ksp-compile-testing-gotchas.md
- Writing the Gradle Plugin: developer-guide/gradle-plugin-gotchas.md