-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmkdocs.yml
76 lines (69 loc) · 1.67 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
# Information
site_name: Ackpine
site_description: A library providing consistent APIs for installing and uninstalling apps on an Android device
site_author: 2023-2025 Ilya Fomichev
site_url: 'https://ackpine.solrudev.ru'
remote_branch: gh-pages
edit_uri: ""
# GitHub Repository
repo_name: Ackpine
repo_url: 'https://github.com/solrudev/Ackpine'
# Copyright
copyright: 'Copyright © 2023-2025 Ilya Fomichev'
# Configuration
theme:
name: material
favicon: images/logo-icon.svg
logo: images/logo-white.svg
features:
- content.code.copy
- navigation.footer
icon:
repo: fontawesome/brands/github
font:
text: Noto Sans
code: JetBrains Mono
palette:
- scheme: default
media: "(prefers-color-scheme: light)"
primary: custom
accent: custom
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
media: "(prefers-color-scheme: dark)"
primary: custom
accent: custom
toggle:
icon: material/brightness-4
name: Switch to light mode
# CSS
extra_css:
- 'css/docs.css'
# Navigation
nav:
- 'Overview': index.md
- 'Getting Started': getting_started.md
- 'Configuration': configuration.md
- 'Split APKs': split_apks.md
- 'Samples': samples.md
- 'Permissions': permissions.md
- 'Architecture': architecture.md
- 'Building': building.md
- 'API reference ⏏': api/index.html
- 'Change Log': changelog.md
# Extensions
markdown_extensions:
- pymdownx.inlinehilite
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- admonition
- toc:
permalink: true
# Plugins
plugins:
- search
- minify:
minify_html: true