Summary can now contain short codes when using <!--more--> to define end of summary.
authorspf13 <steve.francia@gmail.com>
Fri, 4 Oct 2013 20:07:24 +0000 (16:07 -0400)
committerspf13 <steve.francia@gmail.com>
Fri, 4 Oct 2013 20:07:24 +0000 (16:07 -0400)
hugolib/site.go

index 25ee4d3dc452968eea8a371aff2b7c63af7a3f71..8e4e884f2858f873bed346312ec2ade23623c2cb 100644 (file)
@@ -247,6 +247,7 @@ func (s *Site) checkDirectories() (err error) {
 func (s *Site) ProcessShortcodes() {
        for _, page := range s.Pages {
                page.Content = template.HTML(ShortcodesHandle(string(page.Content), page, s.Tmpl))
+               page.Summary = template.HTML(ShortcodesHandle(string(page.Summary), page, s.Tmpl))
        }
 }