mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2024-11-24 08:13:05 +00:00
30 lines
895 B
Markdown
30 lines
895 B
Markdown
+++
|
|
disableToc = false
|
|
hidden = true
|
|
title = "Version 5.1"
|
|
type = "releasenotes"
|
|
weight = -1
|
|
+++
|
|
|
|
## 5.1.0 (2022-07-15) {#5-1-0}
|
|
|
|
### Hugo 0.95.0
|
|
|
|
- {{% badge color="fuchsia" icon="fa-fw fab fa-hackerrank" title=" " %}}0.95.0{{% /badge %}} This release requires a newer Hugo version.
|
|
|
|
### Change
|
|
|
|
- {{% badge style="note" title=" " %}}Change{{% /badge %}} Because the print preview URLs were non deterministic for normal pages in comparison to page bundles, this is now changed. Each print preview is now accessible by adding a `index.print.html` to the default URL.
|
|
|
|
You can revert this behavior by overwriting the `print` output format setting in your `hugo.toml`to:
|
|
|
|
{{< multiconfig file=hugo >}}
|
|
[outputFormats]
|
|
[outputFormats.print]
|
|
name= "print"
|
|
baseName = "index"
|
|
path = "_print"
|
|
isHTML = true
|
|
mediaType = 'text/html'
|
|
permalinkable = false
|
|
{{< /multiconfig >}}
|