tpl: Fix BOM issue in templates

Fixes #4895
This commit is contained in:
Bjørn Erik Pedersen 2018-10-30 17:36:05 +01:00
parent 729593c842
commit 3a786a248d
2 changed files with 42 additions and 1 deletions

View file

@ -212,3 +212,27 @@ Some content
}
}
// https://github.com/gohugoio/hugo/issues/4895
func TestTemplateBOM(t *testing.T) {
b := newTestSitesBuilder(t).WithSimpleConfigFile()
bom := "\ufeff"
b.WithTemplatesAdded(
"_default/baseof.html", bom+`
Base: {{ block "main" . }}base main{{ end }}`,
"_default/single.html", bom+`{{ define "main" }}Hi!?{{ end }}`)
b.WithContent("page.md", `---
title: "Page"
---
Page Content
`)
b.CreateSites().Build(BuildCfg{})
b.AssertFileContent("public/page/index.html", "Base: Hi!?")
}