-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
95 lines (88 loc) · 2.18 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
# pip install mkdocs mkdocs-material
# mkdocs serve
# mkdocs gh-deploy
# https://www.mkdocs.org/getting-started/
# Project information
site_name: 'KLocation'
site_description: 'A kotlin multiplatform library for location tracking with compose multiplatform support'
site_author: 'Henry Addo'
site_url: 'https://addhen.github.io/klocation/'
edit_uri: 'tree/main/docs/'
remote_branch: gh-pages
docs_dir: docs
repo_name: 'KLocation'
repo_url: 'https://github.com/addhen/klocation'
# Navigation
nav:
- 'Overview': index.md
- 'Setup': setup.md
- 'Usage': usage.md
- 'API reference': api/
- 'Sample code': https://github.com/addhen/klocation/tree/main/sample
- 'Change Log': changelog.md
- 'Contributing': contributing.md
- 'Code of Conduct': code-of-conduct.md
# Configuration
theme:
name: 'material'
language: 'en'
icon:
logo: material/map-marker-radius
user_color_mode_toggle: true
color_mode: auto
palette:
- media: '(prefers-color-scheme: light)'
scheme: default
primary: 'white'
accent: 'deep orange'
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: '(prefers-color-scheme: dark)'
scheme: slate
primary: 'black'
accent: 'deep orange'
toggle:
icon: material/brightness-4
name: Switch to light mode
font:
text: 'Roboto Condensed'
code: 'Roboto Mono'
features:
- content.tabs.link
- content.code.copy
- content.code.select
shortcuts:
help: 191 # ?
next: 78 # n
previous: 80 # p
search: 83 # s
plugins:
- social
- search
- mkdocs-video:
is_video: true
video_muted: true
video_controls: false
video_autoplay: true
video_loop: true
css_style:
width: "100%"
height: "30rem"
# Extensions
markdown_extensions:
- admonition
- attr_list
- codehilite:
guess_lang: false
- footnotes
- toc:
permalink: true
- pymdownx.betterem
- pymdownx.superfences
- pymdownx.tabbed
- pymdownx.details
- pymdownx.tilde
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg