return p, nil
}
+func (p *Page) ProcessShortcodes(t bundle.Template) {
+ p.Content = template.HTML(ShortcodesHandle(string(p.Content), p, t))
+ p.Summary = template.HTML(ShortcodesHandle(string(p.Summary), p, t))
+}
+
func (p *Page) analyzePage() {
p.WordCount = TotalWords(p.Plain())
p.FuzzyWordCount = int((p.WordCount+100)/100) * 100
return
}
-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))
- }
-}
-
func (s *Site) CreatePages() (err error) {
if s.Source == nil {
panic(fmt.Sprintf("s.Source not set %s", s.absContentDir()))
page.Section = file.Section
page.Dir = file.Dir
- // Handling short codes prior to Conversion to HTML
- page.Content = template.HTML(ShortcodesHandle(string(page.Content), page, s.Tmpl))
- page.Summary = template.HTML(ShortcodesHandle(string(page.Summary), page, s.Tmpl))
+ //Handling short codes prior to Conversion to HTML
+ page.ProcessShortcodes(s.Tmpl)
err = page.Convert()
if err != nil {