-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yml
96 lines (87 loc) · 2.03 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
# Project information
site_name: xtrasonnet
site_url: https://jam01.github.io/xtrasonnet/
site_author: Jose Montoya
site_description: extensible jsonnet transformations
# Repository
repo_name: jam01/xtrasonnet
repo_url: https://github.com/jam01/xtrasonnet
# Copyright
copyright: Copyright Jose Montoya 2023
# Configuration
theme:
name: material
# custom_dir: theme/overrides
features:
- content.code.annotate
- navigation.indexes
- navigation.tabs
- navigation.top
docs_dir: docs
# Plugins
plugins:
- search
- minify:
minify_html: true
# - extra-sass # https://github.com/squidfunk/mkdocs-material/issues/2376
# Customization
extra:
# version:
# provider: mike
social:
- icon: fontawesome/brands/github
link: https://github.com/jam01
#extra_css:
# - stylesheets/extra.scss
# - stylesheets/extra.css
#extra_javascript:
# - javascripts/editor.bundle.js
# Extensions
markdown_extensions:
# heading links
- toc:
permalink: true
# code-blocks
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
# grids
- attr_list
- md_in_html
# notes
- admonition
- pymdownx.details
- pymdownx.superfences
# Page tree
nav:
- Home: index.md
- Getting started:
- installation.md
- Programmatically: programmatic.md
# - Executable: cli.md
- Logging: logging.md
- xtr:
- xtr/index.md
- arrays: xtr/arrays.md
- base64: xtr/base64.md
- crypto: xtr/crypto.md
- datetime: xtr/datetime.md
- duration: xtr/duration.md
- math: xtr/math.md
- numbers: xtr/numbers.md
- objects: xtr/objects.md
- strings: xtr/strings.md
- url: xtr/url.md
- Header: header.md
- Data formats:
- dataformats/index.md
- JSON: dataformats/json.md
- XML: dataformats/xml.md
- Java Object: dataformats/java.md
- CSV: dataformats/csv.md
- Plain Text: dataformats/plaintext.md
- Office Spreadsheet: dataformats/spreadsheet.md
- Camel: camel.md
- Playground: playground.md