forked from google/accompanist
-
Notifications
You must be signed in to change notification settings - Fork 5
/
mkdocs.yml
104 lines (99 loc) · 2.62 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
97
98
99
100
101
102
103
104
# Project information
site_name: 'Accompanist'
site_description: 'A group of libraries to help write Jetpack Compose apps.'
site_author: 'Google'
site_url: 'https://google.github.io/accompanist/'
edit_uri: 'tree/main/docs/'
remote_branch: gh-pages
docs_dir: docs-gen
# Repository
repo_name: 'Accompanist'
repo_url: 'https://github.com/google/accompanist'
# Navigation
nav:
- 'Overview': index.md
- 'Insets':
- 'Guide': insets.md
- 'API': api/insets/
- 'System UI Controller':
- 'Guide': systemuicontroller.md
- 'API': api/systemuicontroller/
- 'AppCompat Theme':
- 'Guide': appcompat-theme.md
- 'API': api/appcompat-theme/
- 'AppCompat Theme Adapter':
- 'Guide': themeadapter-appcompat.md
- 'API': api/themeadapter-appcompat/
- 'Material Theme Adapter':
- 'Guide': themeadapter-material.md
- 'API': api/themeadapter-material/
- 'Material 3 Theme Adapter':
- 'Guide': themeadapter-material3.md
- 'API': api/themeadapter-material3/
- 'Core Theme Adapter':
- 'Guide': themeadapter-core.md
- 'API': api/themeadapter-core/
- 'Pager layouts':
- 'Guide': pager.md
- 'API': api/pager/
- 'Swipe Refresh':
- 'Guide': swiperefresh.md
- 'API': api/swiperefresh/
- 'Placeholder':
- 'Guide': placeholder.md
- 'Foundation API': api/placeholder/
- 'Material API': api/placeholder-material/
- 'Drawable Painter':
- 'Guide': drawablepainter.md
- 'API': api/drawablepainter/
- 'Flow layouts':
- 'Guide': flowlayout.md
- 'API': api/flowlayout/
- 'Permissions':
- 'Guide': permissions.md
- 'API': api/permissions/
- 'Navigation Animation':
- 'Guide': navigation-animation.md
- 'API': api/navigation-animation/
- 'Navigation Material':
- 'Guide': navigation-material.md
- 'API': api/navigation-material/
- 'WebView':
- 'Guide': web.md
- 'API': api/web/
- 'Adaptive':
- 'Guide': adaptive.md
- 'API': api/adaptive
- 'Test Harness':
- 'Guide': testharness.md
- 'API': api/testharness
- 'Snapshots': using-snapshot-version.md
- 'Contributing': contributing.md
- 'Maintainers':
- 'Update guide': updating.md
# Configuration
theme:
name: 'material'
language: 'en'
icon:
logo: material/music-clef-treble
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:
alternate_style: true
- pymdownx.details