-
Notifications
You must be signed in to change notification settings - Fork 34
/
mkdocs.yml
61 lines (56 loc) · 1.36 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
site_name: Mordant
repo_name: Mordant
repo_url: https://github.com/ajalt/mordant
site_description: "Mordant: Multiplatform text styling for Kotlin command-line applications"
site_author: AJ Alt
remote_branch: gh-pages
copyright: 'Copyright © 2018 AJ Alt'
theme:
name: 'material'
logo: img/gradient_white_24dp.svg
favicon: img/favicon.ico
icon:
repo: fontawesome/brands/github
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: indigo
accent: indigo
toggle:
icon: material/brightness-4
name: Switch to light mode
markdown_extensions:
- smarty
- codehilite:
guess_lang: false
- footnotes
- meta
- toc:
permalink: true
- admonition
- pymdownx.betterem:
smart_enable: all
- pymdownx.details
- pymdownx.caret
- pymdownx.details
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- tables
- admonition
nav:
- 'Getting Started': guide.md
- 'Progress Bars': progress.md
- 'Keyboard and Mouse Input': input.md
- 'API Reference': api/index.html
- 'Releases': changelog.md