From: Joel Scoble Date: Thu, 2 Oct 2014 21:28:24 +0000 (-0500) Subject: Feed the titleized taxonomy key through string replace to replace '-' with ' ' for... X-Git-Tag: v0.13~389 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=f52e6628;p=brevno-suite%2Fhugo Feed the titleized taxonomy key through string replace to replace '-' with ' ' for proper display of the taxonmy title --- diff --git a/hugolib/site.go b/hugolib/site.go index e3ef4727..ad7afd72 100644 --- 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