-
Notifications
You must be signed in to change notification settings - Fork 95
/
mkdocs.yml
83 lines (78 loc) · 2.19 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
# Project information
site_name: 'Horologist'
site_description: 'A group of libraries to help write Wear OS apps.'
site_author: 'Google'
site_url: 'https://google.github.io/horologist/'
edit_uri: 'tree/main/docs/'
remote_branch: gh-pages
docs_dir: docs-gen
# Repository
repo_name: 'Horologist'
repo_url: 'https://github.com/google/horologist'
# Navigation
nav:
- 'Overview': index.md
- 'API': api/
- 'Auth':
- 'Overview': auth-overview.md
- 'Sample apps': auth-sample-apps.md
- 'Auth Composables lib': auth-composables.md
- 'Auth UI lib': auth-ui.md
- 'Auth Data lib': auth-data.md
- 'Auth Data Phone lib': auth-data-phone.md
- 'Token sharing guide': auth-tokenshare-guide.md
- 'Google Sign-In guide': auth-googlesignin-guide.md
- 'Composables':
- 'Guide': composables.md
- 'Compose Layout':
- 'Guide': compose-layout.md
- 'Compose Material':
- 'Guide': compose-material.md
- 'Data Layer':
- 'Guide': datalayer.md
- 'App Helpers': datalayer-helpers-guide.md
- 'Phone UI': datalayer-phone-ui.md
- 'Sample': datalayer-sample.md
- 'Media':
- 'Overview': media-toolkit.md
- 'Simple app guide': simple-media-app-guide.md
- 'Media UI lib': media-ui.md
- 'Media Domain lib': media.md
- 'Media Data lib': media-data.md
- 'Media3 Backend lib': media3-backend.md
- 'Media sample app': media-sample.md
- 'Stateful PlayerScreen Guide': media-playerscreen.md
- 'Audio Guide': audio.md
- 'Audio UI Guide': audio-ui.md
- 'Network Awareness':
- 'Guide': network-awareness.md
- 'Tiles':
- 'Guide': tiles.md
- 'Snapshots': using-snapshot-version.md
- 'Contributing': contributing.md
- 'Maintainers':
- 'Update guide': updating.md
# Configuration
theme:
name: 'material'
language: 'en'
logo: logo/logo-white.svg
palette:
primary: 'black'
accent: 'deep orange'
font:
text: 'Roboto'
code: 'JetBrains Mono'
# Extensions
markdown_extensions:
- admonition
- attr_list
- codehilite:
guess_lang: false
- footnotes
- toc:
permalink: true
- pymdownx.betterem
- pymdownx.superfences
- pymdownx.tabbed
- pymdownx.details