-
Notifications
You must be signed in to change notification settings - Fork 140
/
mkdocs.yml
78 lines (72 loc) · 1.81 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
site_name: Scrimage Image Library
# Meta tags (placed in header)
site_description: Java, Scala, Kotlin image manipulation library.
site_author: sksamuel
site_url: https://github.com/sksamuel/scrimage
markdown_extensions:
- admonition
- pymdownx.arithmatex
- pymdownx.details
- pymdownx.tabbed
- codehilite
- pymdownx.superfences
- admonition
- attr_list
- pymdownx.highlight:
use_pygments: true
# Repository (add link to repository on each page)
repo_name: scrimage
repo_url: https://github.com/sksamuel/scrimage
theme:
icon:
logo: material/camera
repo: fontawesome/brands/github
name: material
palette:
primary: black
accent: orange
features:
- search.highlight
plugins:
- search
nav:
- Overview:
- "Welcome": "index.md"
- "quick_start.md"
- "changelog.md"
- "faq.md"
- Api:
- "Introduction": "api_intro.md"
- "Creating an image": "create.md"
- "Pixel Functions": "pixels.md"
- "Colors": "colors.md"
- "Metadata": "metadata.md"
- IO:
- "Reading/Writing": "io.md"
- "Webp": "webp.md"
- "Extra Formats": "extra_formats.md"
- "Format Detection": "format_detection.md"
- "Animated Gif": "animated_gif.md"
- Operations:
- "autocrop.md"
- "brightness.md"
- "blur-and-stretch.md"
- "bound.md"
- "contrast.md"
- "cover.md"
- "fill.md"
- "fit.md"
- "flip.md"
- "max.md"
- "pad.md"
- "overlay.md"
- "resize.md"
- "rotate.md"
- "scale.md"
- "take.md"
- "translate.md"
- "trim.md"
- "zoom.md"
- "filters.md"
- "composites.md"
- "transforms.md"