hugo-theme-relearn/exampleSite/content/introduction/releasenotes/5/1.en.md

31 lines
895 B
Markdown
Raw Normal View History

2024-09-18 18:36:42 +00:00
+++
disableToc = false
hidden = true
title = "Version 5.1"
type = "releasenotes"
weight = -1
+++
2024-09-18 18:47:07 +00:00
## 5.1.0 (2022-07-15) {#5-1-0}
2024-09-18 18:36:42 +00:00
### 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 >}}