Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Inserting-Figures.md - github.com/AmazingRise/hugo-theme-diary.wiki.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 23f1a50a9ffdf54e457c2c491baa777936426bb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Inspired by [this issue](https://github.com/AmazingRise/hugo-theme-diary/issues/55), I ported a shortcode from [cupper-hugo-theme](https://github.com/zwbetz-gh/cupper-hugo-theme).
Thanks for [zwbetz-gh](https://github.com/zwbetz-gh)'s code.

Additionally, I add a property `align` for aligning.

```
{{< insertFigure
img="resource_name" 
caption="This is an example figure. For details, view [here](https://github.com/AmazingRise/hugo-theme-diary/issues/55)." 
command="Resize" 
align="Right"
options="700x" >}}
```

NOTE:
- `img`: it can be a resource name; or a file's name, which located in current directory. [How to define a source?](https://gohugo.io/content-management/page-resources/#resources-metadata-example)
- `caption`: will be shown beneath the figure (markdown supported).
- `command`: it can be `Fit`, `Fill`, `Resize`, or `Original`.
- `align`: possible value: `Left`, `Right`, `Center`, `Justify` (it is not case-sensitive).
- `options`: parameters, please see [image processing methods](https://gohugo.io/content-management/image-processing/#image-processing-methods).

In fact, this shortcode is equivalent to [Image processing methods](https://gohugo.io/content-management/image-processing/#image-processing-methods).