forked from coil-kt/coil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
80 lines (72 loc) · 1.8 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
# Project information
site_name: 'Coil'
site_description: 'An image loading library for Android backed by Kotlin Coroutines'
site_author: '2020 Coil Contributors'
site_url: 'https://coil-kt.github.io/coil/'
remote_branch: gh-pages
# Repository
repo_name: 'Coil'
repo_url: 'https://github.com/coil-kt/coil'
# Copyright
copyright: 'Copyright © 2020 Coil Contributors'
# Configuration
theme:
name: 'material'
language: 'en'
favicon: 'images/coil_logo_black.ico'
logo: 'images/coil_logo_black.svg'
palette:
primary: 'white'
accent: 'white'
font:
text: 'Roboto'
code: 'Roboto Mono'
# Customization
extra:
social:
- type: 'github'
link: 'https://github.com/coil-kt/coil'
# Navigation
nav:
- 'Overview': index.md
- 'Getting Started': getting_started.md
- 'Migrating from Glide/Picasso': migrating.md
- 'Image Loaders': image_loaders.md
- 'Requests': requests.md
- 'Targets': targets.md
- 'Transformations': transformations.md
- 'Transitions': transitions.md
- 'Extending the Image Pipeline': image_pipeline.md
- 'Java Compatibility': java_compatibility.md
- 'GIFs': gifs.md
- 'SVGs': svgs.md
- 'Video Frames': videos.md
- 'Recipes': recipes.md
- 'FAQ': faq.md
- 'API':
- 'coil': api/coil-singleton/index.md
- 'coil-base': api/coil-base/index.md
- 'coil-gif': api/coil-gif/index.md
- 'coil-svg': api/coil-svg/index.md
- 'coil-video': api/coil-video/index.md
- 'Change Log': changelog.md
- 'Contributing': contributing.md
- 'Code of Conduct': code_of_conduct.md
# CSS
extra_css:
- 'css/site.css'
# Extensions
markdown_extensions:
- admonition
- codehilite:
guess_lang: false
- footnotes
- toc:
permalink: true
- pymdownx.betterem
- pymdownx.superfences
# Plugins
plugins:
- search
- minify:
minify_html: true