hugo:release-0.119.0

Last commit made on 2023-09-24
Get this branch:
git clone -b release-0.119.0 https://git.launchpad.net/hugo

Branch merges

Branch information

Name:
release-0.119.0
Repository:
lp:hugo

Recent commits

d234a96... by hugoreleaser <email address hidden>

releaser: Prepare repository for 0.120.0-DEV

[ci skip]

b84644c... by hugoreleaser <email address hidden>

releaser: Bump versions for release of 0.119.0

[ci skip]

a9d19db... by Bjørn Erik Pedersen

docs: Even more about images.Process

12d7131... by Bjørn Erik Pedersen

docs: More about images.Process

6b65b2f... by Oleksandr Redko <email address hidden>

common: Remove unused constants

1768684... by Bjørn Erik Pedersen

docs: Regen docshelper

eb0ed33... by Bjørn Erik Pedersen

Merge commit '9aec42c5452b3eb224888c50ba1c3f3b68a447e9'

9aec42c... by Bjørn Erik Pedersen

Squashed 'docs/' changes from 686c7b6eb..7ef2dbce4

7ef2dbce4 Cleanup RSS templates page
0e23d5e1a Fix multilingual permalinks example
b3c342b07 Update faq.md
f73109ae2 Regen CLI docs
ac6ee2027 Fix minor nitpicks (#2233)
f24fcffe1 Mention the Giscus comments system (#2234)
418fa981e Remove reference to Ghost migration tool
94a76df29 Adjust table layout
e263ad6b9 content: Fix typos
fd1eb26b5 Update featured image in digital.gov showcase
d3d946555 Correct directory description
bbe1dff56 Use sentence case for heading
acfa0be54 Add hosting provider fetch depth to GitInfo variables page
d78c427e6 Fix typo
751517fea Fix spelling mistake
cdd77aa9a Update content for v0.118.0
c77d09b1c Format netlify.toml
d5a6c4f51 netlify: Hugo 0.118.1
8c717301a Revert "netlify: Hugo 0.118.0"
a9b2ef5c2 netlify: Hugo 0.118.0
61959591c Merge commit '77b976dd92b4f66657d83d875aef0c617df492d9'
95f2029a1 docs: Regen docs helper
fd57ba960 markup/goldmark: Add CJK extension
2bfb3bf4c docshelper: Improve template lookup order descriptions
b0baa890e cache: Hide IsResourceDir from the exported config
b4b071ea0 docs: Replace docs.json with docs.yaml

git-subtree-dir: docs
git-subtree-split: 7ef2dbce4ad728d32c218761c6cfbe2f58f8da16

6a246d1... by Bjørn Erik Pedersen

Add images.Process filter

This allows for constructs like:

```
{{ $filters := slice (images.GaussianBlur 8) (images.Grayscale) (images.Process "jpg q30 resize 200x") }}
{{ $img = $img | images.Filter $filters }}
```

Note that the `action` option in `images.Process` is optional (`resize` in the example above), so you can use the above to just set the target format, e.g.:

```
{{ $filters := slice (images.GaussianBlur 8) (images.Grayscale) (images.Process "jpg") }}
{{ $img = $img | images.Filter $filters }}
```

Fixes #8439

ef0e714... by Bjørn Erik Pedersen

Add $image.Process

Which supports all the existing actions: resize, crop, fit, fill.

But it also allows plain format conversions:

```
{{ $img = $img.Process "webp" }}
```

Which will be a simple re-encoding of the source image.

Fixes #11483