Closed
Description
Reference: https://discourse.gohugo.io/t/section-menu-items-with-no-name-are-not-rendered/52778
We made a number of intentional breaking changes in v0.123.0, but I don't think this was one of them.
With v0.122.0 and earlier, if you didn't provide a name
field when defining a menu entry in your site configuration:
- The
.Name
method would fall back to the page’sLinkTitle
then to itsTitle
. - The
.Title
method would fall back to the page'sTitle
.
That doesn't happen with v0.123.0 and later.
Also, with v0.123.0 and later, if the pageRef
menu entry field points to a section page, and the name
field is not defined, the PageRef
method returns an empty string, and more importantly, Page
returns nothing.
failing test
func TestFoo(t *testing.T) {
t.Parallel()
files := `
-- hugo.toml --
disableKinds = ['rss','sitemap','taxonomy','term']
[[menus.main]]
pageRef = '/p1'
weight = 10
[[menus.main]]
pageRef = '/s1'
weight = 20
-- content/p1.md --
---
title: P1
---
-- content/s1/_index.md --
---
title: S1
---
-- layouts/_default/single.html --
{{ .Content }}
-- layouts/_default/list.html --
{{ .Content }}
-- layouts/_default/home.html --
{{ range $i, $_ := site.Menus.main }}
A{{ $i }}: <a href="{{ .URL }}">{{ .Name }}</a>
{{ end }}
{{ range $i, $_ := site.Menus.main }}
B{{ $i }}: <a href="{{ .URL }}">{{ .Title }}</a>
{{ end }}
{{ range $i, $_ := site.Menus.main }}
C{{ $i }}: <a href="{{ .URL }}">{{ .PageRef }}</a>
{{ end }}
{{ range $i, $_ := site.Menus.main }}
D{{ $i }}: <a href="{{ .URL }}">{{ .Page.Title }}</a>
{{ end }}
`
b := hugolib.Test(t, files)
b.AssertFileContent("public/index.html",
`A0: <a href="/p1/">P1</a>`,
`A1: <a href="/s1/">S1</a>`,
`B0: <a href="/p1/">P1</a>`,
`B1: <a href="/s1/">S1</a>`,
`C0: <a href="/p1/">/p1</a>`,
`C1: <a href="/s1/">/s1</a>`,
`D0: <a href="/p1/">P1</a>`,
`D1: <a href="/s1/">S1</a>`,
)
}