-
-
Notifications
You must be signed in to change notification settings - Fork 115
/
Copy pathmkdocs.yml
81 lines (72 loc) · 1.95 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
site_name: Landscapist
site_description: 'A pluggable, highly optimized Jetpack Compose image loading library that fetches and displays network images with Glide, Coil, and Fresco.'
site_author: 'Jaewoong (skydoves)'
site_url: 'https://github.com/skydoves/landscapist'
edit_uri: 'tree/main/docs/'
remote_branch: gh-pages
docs_dir: docs
# Navigation
nav:
- 'Overview': index.md
- 'Glide':
- 'Overview': glide/overview.md
- 'Custom Options': glide/options.md
- 'Coil':
- 'Overview': coil/overview.md
- 'Custom ImageLoader': coil/imageloader.md
- 'Coil3 (KMP)': coil3.md
- 'Fresco':
- 'Overview': fresco/overview.md
- 'Custom ImageRequest': fresco/request.md
- 'Animated Image Support': 'fresco/animated-image.md'
- 'Image Options': image-options.md
- 'Image States': image-state.md
- 'Custom Composable': custom-composable.md
- 'Preview on Android Studio': preview.md
- 'Placeholder': placeholder.md
- 'Animation': animation.md
- 'Transformation': transformation.md
- 'Palette': palette.md
- 'Image Component and Plugin': image-component-and-plugin.md
- 'BOM': bom.md
- 'Snapshots With Paparazzi': snapshots-with-paparazzi.md
- 'Version Map': version-map.md
- 'Sponsor 🩷': sponsor.md
# Repository
repo_name: 'Landscapist'
repo_url: 'https://github.com/skydoves/landscapist'
# Configuration
theme:
name: 'material'
language: 'en'
icon:
logo: material/leaf-maple
palette:
primary: 'red'
accent: 'red'
scheme: slate
font:
text: 'Roboto'
code: 'JetBrains Mono'
features:
- content.tabs.link
- content.code.copy
- content.code.annotate
extra:
analytics:
provider: google
property: G-1SBY14Q79E
# 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