-
-
Notifications
You must be signed in to change notification settings - Fork 51
/
mkdocs.yml
96 lines (87 loc) · 2.35 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
87
88
89
90
91
92
93
94
95
96
# Project information
site_name: 'Kohii'
site_description: 'Android Video Playback made easy.'
site_author: '2019 Nam Nguyen, nam@ene.im'
site_url: 'https://eneim.github.io/kohii'
remote_branch: gh-pages
# Repository
repo_name: 'Kohii'
repo_url: 'https://github.com/eneim/kohii'
# Copyright
copyright: 'Copyright © 2019 Nam Nguyen, nam@ene.im'
# Configuration
theme:
name: 'material'
language: 'en'
favicon: 'art/favicon.ico'
logo: 'art/ic_launcher-web.png'
palette:
primary: 'blue grey'
accent: 'cyan'
font:
# text: 'Open Sans'
text: 'Noto Sans JP' # 'Inter', 'Karla', 'Noto Sans JP', 'Montserrat', 'Open Sans'
code: 'Roboto Mono' # 'Oxygen Mono', 'Fira Code', 'Roboto Mono'
# Customization
extra:
social:
- icon: fontawesome/brands/github-alt
link: https://github.com/eneim/kohii
google_analytics:
- 'UA-72567780-9'
- 'auto'
# CSS
extra_css:
- 'css/main.css'
# Extensions
markdown_extensions:
- admonition
- codehilite:
guess_lang: false
use_pygments: True
noclasses: True
pygments_style: perldoc
- footnotes
- toc:
permalink: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tabbed
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
- tables
- footnotes
# Plugins
plugins:
- search
- minify:
minify_html: true
# Navigation
nav:
- 'Overview': index.md
- 'Glossary': glossary.md
- 'Using Kohii':
- 'Getting start': getting-started.md
- 'Basic usages': usage-basic.md
- 'Advance usages':
- 'Summary': advance-summary.md
- 'Using custom Kohii creators': advance-builder.md
- 'Using unique tag': advance-unique-tag.md
- 'Show/Hide thumbnail': advance-thumbnail.md
- 'Switching renderers': advance-switch-renderer.md
- 'Reusing renderer': advance-reuse-renderer-instance.md
- 'Using MemoryMode': advance-memory-mode.md
- 'Multiple playbacks': advance-multiple-playbacks.md
- 'Manual playback (experimental)': advance-manual-playback.md
- 'Demo app': demos.md
- 'Extending Kohii':
- 'Custom Engine': custom-engine.md
- 'Changelog': changelog.md
- 'API': api/index.html
- 'Code of Conduct': code_of_conduct.md