mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
Add a debug helper
This commit is contained in:
parent
ba16a14c6e
commit
6d21559fb5
1 changed files with 12 additions and 0 deletions
|
@ -992,6 +992,18 @@ func pagesToString(pages ...page.Page) string {
|
||||||
return strings.Join(paths, "|")
|
return strings.Join(paths, "|")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func dumpPagesLinks(pages ...page.Page) {
|
||||||
|
var links []string
|
||||||
|
for _, p := range pages {
|
||||||
|
links = append(links, p.RelPermalink())
|
||||||
|
}
|
||||||
|
sort.Strings(links)
|
||||||
|
|
||||||
|
for _, link := range links {
|
||||||
|
fmt.Println(link)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func dumpPages(pages ...page.Page) {
|
func dumpPages(pages ...page.Page) {
|
||||||
fmt.Println("---------")
|
fmt.Println("---------")
|
||||||
for _, p := range pages {
|
for _, p := range pages {
|
||||||
|
|
Loading…
Reference in a new issue