-
Notifications
You must be signed in to change notification settings - Fork 407
/
Copy pathmkdocs.yml
79 lines (75 loc) · 2.16 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
# pip install mkdocs mkdocs-material
# mkdocs serve
# mkdocs gh-deploy
site_name: Shadow Gradle Plugin
repo_name: Shadow
repo_url: https://github.com/GradleUp/shadow
site_description: "Gradle plugin to create fat/uber JARs, apply file transforms, and relocate packages for applications and libraries"
site_author: GradleUp developers
remote_branch: gh-pages
theme:
name: 'material'
favicon: images/logo.orig.svg
logo: images/logo.svg
palette:
- media: '(prefers-color-scheme: light)'
scheme: default
primary: 'white'
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: '(prefers-color-scheme: dark)'
scheme: slate
primary: 'black'
toggle:
icon: material/brightness-4
name: Switch to light mode
font:
text: 'Lato'
code: 'Fira Code'
features:
- content.code.copy
- content.code.select
markdown_extensions:
- smarty
- codehilite:
guess_lang: false
- footnotes
- meta
- toc:
permalink: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.emoji
- pymdownx.tabbed:
alternate_style: true
- tables
- admonition
- attr_list
- md_in_html
nav:
- 'Home': README.md
- 'Introduction': introduction/README.md
- 'Getting Started': getting-started/README.md
- 'Configuration':
- 'Overview': configuration/README.md
- 'Filtering': configuration/filtering/README.md
- 'Dependencies': configuration/dependencies/README.md
- 'Merging': configuration/merging/README.md
- 'Relocation': configuration/relocation/README.md
- 'Minimizing': configuration/minimizing/README.md
- 'Reproducible Builds': configuration/reproducible-builds/README.md
- 'Custom Tasks': custom-tasks/README.md
- 'Application Plugin': application-plugin/README.md
- 'KMP Plugin': kmp-plugin/README.md
- 'Publishing': publishing/README.md
- 'Multi-Project': multi-project/README.md
- 'Plugins': plugins/README.md
- 'Changes': changes/README.md
- 'API': api/index.html
- 'About': about/README.md