projects
/
brevno-suite
/
hugo
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
938733f
)
Feed the titleized taxonomy key through string replace to replace '-' with ' ' for...
author
Joel Scoble
<joel.scoble@outlook.com>
Thu, 2 Oct 2014 21:28:24 +0000
(16:28 -0500)
committer
spf13
<steve.francia@gmail.com>
Tue, 7 Oct 2014 21:01:39 +0000
(17:01 -0400)
hugolib/site.go
patch
|
blob
|
history
diff --git
a/hugolib/site.go
b/hugolib/site.go
index e3ef47275dd85d95cb417bc91e4d3ad3ad9f0482..ad7afd725dd4a2b8ca729fbcd76d00ccdb072562 100644
(file)
--- a/
hugolib/site.go
+++ b/
hugolib/site.go
@@
-815,7
+815,7
@@
func taxonomyRenderer(s *Site, taxes <-chan taxRenderInfo, results chan<- error,
for t := range taxes {
base := t.plural + "/" + t.key
n := s.NewNode()
- n.Title = strings.
Title(t.key
)
+ n.Title = strings.
Replace(strings.Title(t.key), "-", " ", -1
)
s.setUrls(n, base)
n.Date = t.pages[0].Page.Date
n.Data[t.singular] = t.pages