1
0
mirror of https://github.com/gohugoio/hugo.git synced 2024-05-11 05:54:58 +00:00

Fix site.Taxonomies for taxonomies with space in name

Fixes #12001
This commit is contained in:
Bjørn Erik Pedersen
2024-02-06 16:24:45 +01:00
parent bd0200da6e
commit 146aedd7aa
2 changed files with 25 additions and 3 deletions

View File

@@ -753,3 +753,26 @@ Single.
`
Test(t, files)
}
func TestTaxonomiesSpaceInName(t *testing.T) {
t.Parallel()
files := `
-- hugo.toml --
[taxonomies]
authors = 'book authors'
-- content/p1.md --
---
title: Good Omens
book authors:
- Neil Gaiman
- Terry Pratchett
---
-- layouts/index.html --
{{- $taxonomy := "book authors" }}
Len Book Authors: {{ len (index .Site.Taxonomies $taxonomy) }}
`
b := Test(t, files)
b.AssertFileContent("public/index.html", "Len Book Authors: 2")
}