-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
73 lines (73 loc) · 1.95 KB
/
mkdocs.yml
File metadata and controls
73 lines (73 loc) · 1.95 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
# yaml-language-server: $schema=https://squidfunk.github.io/mkdocs-material/schema.json
copyright: Copyright © 2024 the MxPack project authors
site_name: MxPack
site_url: https://odenix.org/mxpack
repo_url: https://github.com/odenix/mxpack
edit_uri: edit/main/docs/
site_dir: build/site
nav:
- 'index.md'
- 'getting-started.md'
- 'examples.md'
- 'features.md'
- 'extension-points.md'
- 'kotlin-integration.md'
- 'design-principles.md'
- 'api-documentation.md'
- 'changelog.md'
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/odenix/mxpack
watch:
- mxpack-core/src/test/java/org/odenix/mxpack/core/example
- mxpack-kotlin/src/test/kotlin/org/odenix/mxpack/kotlin/example
theme:
name: material
language: en
features:
- content.action.edit
- content.code.annotate
- content.code.copy
- content.tabs.link
- navigation.footer
icon:
edit: material/lead-pencil
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
plugins:
- search
markdown_extensions:
- attr_list
- footnotes
- md_in_html
- toc:
permalink: '#'
- pymdownx.blocks.admonition
- pymdownx.blocks.tab:
alternate_style: true
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.smartsymbols
- pymdownx.snippets:
check_paths: true
dedent_subsections: true
base_path:
- mxpack-core/src/test/java/org/odenix/mxpack/core/example
- mxpack-kotlin/src/test/kotlin/org/odenix/mxpack/kotlin/example
- pymdownx.superfences:
disable_indented_code_blocks: true