-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
53 lines (47 loc) · 1.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
# Project info
site_name: android-commons
site_description: "Common code for building rich applications around Android's theming abilities"
site_author: Projekt Development LLC.
# Repository info
repo_name: android-commons
repo_url: https://github.com/prjkt-io/android-commons
remote_branch: gh-pages
edit_uri: ''
# Copyright
copyright: 'Copyright © 2019 Projekt Development LLC.'
# Theme configuration
theme:
name: 'material'
language: 'en'
favicon: assets/images/favicon.ico
logo: assets/images/logo.svg
palette:
primary: 'white'
accent: 'blue'
# Extensions
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
- tables
# Plugins
plugins:
- search
- minify:
minify_html: true
# Side navigation
nav:
- 'buildtools': 'buildtools'
- 'shell': 'shell'
- 'theme': 'theme'