forked fromcoil-kt/coil
- Notifications
You must be signed in to change notification settings - Fork0
/
Copy pathmkdocs.yml
110 lines (98 loc) · 2.57 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
105
106
107
108
109
110
# Project information
site_name:'Coil'
site_description:'An image loading library for Android backed by Kotlin Coroutines'
site_author:'2024 Coil Contributors'
site_url:'https://coil-kt.github.io/coil/'
remote_branch:gh-pages
edit_uri:""
# Repository
repo_name:'Coil'
repo_url:'https://github.com/coil-kt/coil'
# Copyright
copyright:'Copyright © 2024 Coil Contributors'
# Configuration
theme:
name:'material'
language:'en'
favicon:'images/coil_logo_black.ico'
logo:'images/coil_logo_black.svg'
palette:
# Palette toggle for automatic mode
-media:"(prefers-color-scheme)"
toggle:
icon:material/brightness-auto
name:Switch to light mode
# Palette toggle for light mode
-media:"(prefers-color-scheme: light)"
scheme:default
primary:white
accent:white
toggle:
icon:material/brightness-7
name:Switch to dark mode
# Palette toggle for dark mode
-media:"(prefers-color-scheme: dark)"
scheme:slate
primary:black
accent:black
toggle:
icon:material/brightness-4
name:Switch to light mode
font:
text:'Roboto'
code:'Roboto Mono'
# Customization
extra:
social:
-icon:'fontawesome/brands/github'
link:'https://github.com/coil-kt/coil'
# Navigation
nav:
-'Overview':index.md
-'Getting Started':getting_started.md
-'Compose':compose.md
-'Network Images':network.md
-'Image Loaders':image_loaders.md
-'Image Requests':image_requests.md
-'Extending the Image Pipeline':image_pipeline.md
-'GIFs':gifs.md
-'SVGs':svgs.md
-'Video Frames':videos.md
-'Testing':testing.md
-'Recipes':recipes.md
-'FAQ':faq.md
-'Java Compatibility':java_compatibility.md
-'Migrating from Glide/Picasso':migrating.md
-'Upgrading to Coil 2.x':upgrading_to_coil2.md
-'Upgrading to Coil 3.x':upgrading_to_coil3.md
-'Works with Coil':works_with_coil.md
-'API ⏏':api/index.html
-'WASM Sample ⏏':sample/index.html
-'Change Log':changelog.md
-'Contributing':contributing.md
-'Code of Conduct':code_of_conduct.md
# CSS
extra_css:
-'css/site.css'
# Extensions
markdown_extensions:
-admonition
-footnotes
-toc:
permalink:true
-pymdownx.highlight:
anchor_linenums:true
-pymdownx.inlinehilite
-pymdownx.snippets
-pymdownx.superfences
# Plugins
plugins:
-search
-minify:
minify_html:true
validation:
links:
absolute_links:ignore
nav:
omitted_files:ignore
# Built with https://github.com/squidfunk/mkdocs-material