mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
parent
cf7023cb90
commit
b8ab5c9be6
2 changed files with 25 additions and 2 deletions
|
@ -195,9 +195,9 @@ func (c *pagesCollector) collectDir(dirPath *paths.Path, isDir bool, inFilter fu
|
||||||
var dpath string
|
var dpath string
|
||||||
if dirPath != nil {
|
if dirPath != nil {
|
||||||
if isDir {
|
if isDir {
|
||||||
dpath = filepath.FromSlash(dirPath.Path())
|
dpath = filepath.FromSlash(dirPath.Unnormalized().Path())
|
||||||
} else {
|
} else {
|
||||||
dpath = filepath.FromSlash(dirPath.Dir())
|
dpath = filepath.FromSlash(dirPath.Unnormalized().Dir())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -305,6 +305,29 @@ Pages: {{ range .RegularPages }}{{ .RelPermalink }}|{{ end }}$
|
||||||
b.AssertFileContent("public/index.html", "Pages: /p1/|/p2/|$")
|
b.AssertFileContent("public/index.html", "Pages: /p1/|/p2/|$")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestRebuildAddPageWithSpaceListPagesInHome(t *testing.T) {
|
||||||
|
files := `
|
||||||
|
-- hugo.toml --
|
||||||
|
baseURL = "https://example.com"
|
||||||
|
disableLiveReload = true
|
||||||
|
-- content/asection/s1.md --
|
||||||
|
-- content/p1.md --
|
||||||
|
---
|
||||||
|
title: "P1"
|
||||||
|
weight: 1
|
||||||
|
---
|
||||||
|
-- layouts/_default/single.html --
|
||||||
|
Single: {{ .Title }}|{{ .Content }}|
|
||||||
|
-- layouts/index.html --
|
||||||
|
Pages: {{ range .RegularPages }}{{ .RelPermalink }}|{{ end }}$
|
||||||
|
`
|
||||||
|
|
||||||
|
b := TestRunning(t, files)
|
||||||
|
b.AssertFileContent("public/index.html", "Pages: /p1/|$")
|
||||||
|
b.AddFiles("content/test test/index.md", ``).Build()
|
||||||
|
b.AssertFileContent("public/index.html", "Pages: /p1/|/test-test/|$")
|
||||||
|
}
|
||||||
|
|
||||||
func TestRebuildScopedToOutputFormat(t *testing.T) {
|
func TestRebuildScopedToOutputFormat(t *testing.T) {
|
||||||
files := `
|
files := `
|
||||||
-- hugo.toml --
|
-- hugo.toml --
|
||||||
|
|
Loading…
Reference in a new issue