Feed the titleized taxonomy key through string replace to replace '-' with ' ' for...
authorJoel Scoble <joel.scoble@outlook.com>
Thu, 2 Oct 2014 21:28:24 +0000 (16:28 -0500)
committerspf13 <steve.francia@gmail.com>
Tue, 7 Oct 2014 21:01:39 +0000 (17:01 -0400)
hugolib/site.go

index e3ef47275dd85d95cb417bc91e4d3ad3ad9f0482..ad7afd725dd4a2b8ca729fbcd76d00ccdb072562 100644 (file)
@@ -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