-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmkdocs.yml
64 lines (59 loc) · 1.52 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
repo_name: aaraar
repo_url: https://github.com/christiandeange/aaraar
site_name: aaraar
site_url: https://christiandeange.github.io/aaraar/
site_author: Christian De Angelis
site_description: 'A Gradle Plugin for creating a merged aar file'
copyright: 'Copyright 2025 Christian De Angelis'
remote_branch: gh-pages
theme:
name: 'material'
logo: assets/logo.png
custom_dir: docs/overrides
icon:
repo: fontawesome/brands/github
features:
- content.code.copy
- content.tabs.link
- navigation.footer
- navigation.instant
- toc.integrate
palette:
- scheme: default
media: "(prefers-color-scheme: light)"
primary: blue grey
toggle:
icon: material/brightness-5
name: Switch to dark mode
- scheme: slate
media: "(prefers-color-scheme: dark)"
primary: blue grey
toggle:
icon: material/brightness-3
name: Switch to light mode
markdown_extensions:
- toc:
permalink: true
- pymdownx.caret
- pymdownx.details
- pymdownx.highlight:
use_pygments: true
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- admonition
plugins:
- search
nav:
- 'Overview': index.md
- 'Usage':
- 'Installation': installation.md
- 'Packaging': packaging.md
- 'Shading': shading.md
- 'Publishing an AAR': publishing-aar.md
- 'Publishing a JAR': publishing-jar.md
- 'API Reference': kdoc/index.html
- 'Changelog': changelog.md
- 'License': license.md