Closed renovate[bot] closed 2 months ago
Issues
0 New issues
0 Accepted issues
Measures
0 Security Hotspots
0.0% Coverage on New Code
0.0% Duplication on New Code
:tada: This PR is included in version 34.1.4 :tada:
The release is available on:
34.1.4
Your semantic-release bot :package::rocket:
This PR contains the following updates:
v0.133.1
->v0.134.0
Release Notes
gohugoio/hugo (gohugoio/hugo)
### [`v0.134.0`](https://redirect.github.com/gohugoio/hugo/releases/tag/v0.134.0) [Compare Source](https://redirect.github.com/gohugoio/hugo/compare/v0.133.1...v0.134.0) Hugo v0.134.0 brings render hooks for tables, ContentWithoutSummary, scoped content render and Obsidian style callout alerts. #### ContentWithoutSummary and scoped content render This release finally brings a `Page.ContentWithoutSummary` method. This has been a long sought after methods where the use case is obvious: Render the summary with a *more* button that renders the ... content without summary. To enable this we have reimplemented the content summary handling in Hugo. This consolidates the 3 summary types (`auto`, `manual` and `frontmatter`) â they are now all HTML. This is a slightly breaking change (`manual` was plain text before), but the new behaviour should be much less confusing and easier to handle in the templates. If you want plain text, pipe it into `plainify`: `{{ .Summary | plainify }}`. Before this release there was one instance of `.Content` for a given page, it was e.g. not possible to render a page's content slightly different (e.g. different heading levels) on the list pages or the home page. This release anables that with a new `Page.Markup` with an optional `scope` argument. In the list template you would do something like this: ```handlebars {{ range .Pages | first 5 }} {{ with .Markup "list" }} {{ with .Render }}Configuration
đ Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
đŠ Automerge: Enabled.
â» Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
đ Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.