Disable shortcode processing for html files
authorbep <bjorn.erik.pedersen@gmail.com>
Wed, 14 Jan 2015 19:49:43 +0000 (20:49 +0100)
committerbep <bjorn.erik.pedersen@gmail.com>
Wed, 14 Jan 2015 19:49:43 +0000 (20:49 +0100)
May be enabled later, but then it will have to do the complete "shortcode dance".

See ##674

hugolib/handler_page.go

index 1b6dd23782b9a3be3b649ae1985df0a023e786f6..73cd12a793c957706a89792ebb8b462d5dfe6764 100644 (file)
@@ -81,7 +81,8 @@ type htmlHandler struct {
 
 func (h htmlHandler) Extensions() []string { return []string{"html", "htm"} }
 func (h htmlHandler) PageConvert(p *Page, t tpl.Template) HandledResult {
-       p.ProcessShortcodes(t)
+       // see #674 - disabled by bjornerik for now
+       // p.ProcessShortcodes(t)
        p.Content = helpers.BytesToHTML(p.rawContent)
        return HandledResult{err: nil}
 }