forked from joseluisq/gimage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
72 lines (67 loc) · 2.13 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
site_name: GImage
site_description: 'GImage - A PHP library for easy image handling.'
site_author: 'Jose Quintana'
site_url: https://joseluisq.github.io/gimage/
repo_url: https://github.com/joseluisq/gimage/
edit_uri: ""
theme:
name: 'material'
palette:
primary: 'blue-grey'
accent: 'indigo'
font:
text: 'Fira Sans'
code: 'Droid Sans Mono'
extra:
social:
- type: 'github'
link: 'https://github.com/joseluisq'
- type: 'twitter'
link: 'https://twitter.com/joseluis_q'
markdown_extensions:
- codehilite
- admonition
- meta
- toc:
permalink: true
- markdown.extensions.tables
- pymdownx.arithmatex
- pymdownx.betterem
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_generator: !!python/name:pymdownx.emoji.to_svg
- pymdownx.magiclink:
repo_url_shortener: true
repo_url_shorthand: true
provider: "github"
user: "facelessuser"
repo: "pymdown-extensions"
- pymdownx.tilde
- pymdownx.emoji
- pymdownx.superfences
- pymdownx.inlinehilite
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.tasklist
nav:
- 'Introduction': 'index.md'
- 'Getting Started': 'getting-started.md'
- 'Classes':
- 'Image': './classes/image.md'
- 'Figure': './classes/figure.md'
- 'Text': './classes/text.md'
- 'Canvas': './classes/canvas.md'
- 'Examples':
- 'Cropping': './examples/cropping.md'
- 'Swapping formats': './examples/swapping-formats.md'
- 'Resizing': './examples/resizing.md'
- 'Rotation': './examples/rotation.md'
- 'Creating figures': './examples/creating-figures.md'
- 'Text embedding': './examples/text-embedding.md'
- 'Composing with canvas': './examples/composing-with-canvas.md'
- 'Render images in-memory': './examples/render-images-in-memory.md'
- 'Image resource loading': './examples/image-resource-loading.md'
- 'Creating a presentation card': './examples/creating-a-presentation-card.md'
- 'API Documentation': 'api.md'