forked from maple-dsl/maple-dsl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
86 lines (79 loc) · 2.01 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
# Project information
site_name: MapleDSL Manual
site_description: Documentation for MapleDSL
site_author: MapleDSL
site_url: https://maple-dsl.github.io/maple-dsl
docs_dir: docs
repo_name: 'maple-dsl/maple-dsl'
repo_url: 'https://github.com/maple-dsl/maple-dsl.git'
copyright: Copyright © 2023 MapleDSL
edit_uri: 'https://github.com/maple-dsl/maple-dsl/edit/master/docs/'
theme:
name: material
icon:
repo: fontawesome/brands/github
logo: icon/logo.svg
palette:
- scheme: mapledsl
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- scheme: slate
toggle:
icon: material/toggle-switch
name: Switch to light mode
features:
- navigation.top
- header.autohide
- content.tabs.link
- content.code.copy
language: 'en'
extra_css:
- stylesheets/logo.css
- stylesheets/note.css
- stylesheets/extra.css
markdown_extensions:
- footnotes
- admonition
- pymdownx.details
- attr_list
- codehilite:
guess_lang: false
- toc:
permalink: true
separator: "_"
- mdx_truly_sane_lists
- pymdownx.superfences
- pymdownx.arithmatex:
generic: true
- pymdownx.caret
- pymdownx.tilde
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
plugins:
- search
- git-revision-date-localized
extra_javascript:
- js/jquery.js
- js/config.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
extra:
version:
method: mike
provider: mike
default: master
nav:
- Home: index.md
- Guide:
- Overview: 1.guide/1.overview/overview.md
- Traversal: 1.guide/2.traversal/traversal.md
- Match: 1.guide/3.match/match.md
- Fetch: 1.guide/4.fetch/fetch.md
- Mutation: 1.guide/5.mutation/mutation.md
- Integration: 2.integration/spring.md
- FAQ: 3.appendix/FAQ.md
- Appendix:
- Release Note: 3.appendix/release-note.md
- How to contribute: 3.appendix/how-to-contribute.md