tpl: Set RenderingContext.Config in markdownify
authorAlbert Nigmatzianov <albertnigma@gmail.com>
Thu, 6 Apr 2017 17:38:24 +0000 (19:38 +0200)
committerAlbert Nigmatzianov <albertnigma@gmail.com>
Thu, 6 Apr 2017 19:02:37 +0000 (21:02 +0200)
tpl/tplimpl/template_funcs.go

index 11ab4511c9958b926affeb59d7cf397e1efe05e9..2737533889f55a93fa300c8bf653ef151e3d8ed0 100644 (file)
@@ -1392,7 +1392,8 @@ func (t *templateFuncster) markdownify(in interface{}) (template.HTML, error) {
 
        m := t.ContentSpec.RenderBytes(&helpers.RenderingContext{
                Cfg:     t.Cfg,
-               Content: []byte(text), PageFmt: "markdown"})
+               Content: []byte(text), PageFmt: "markdown",
+               Config: t.ContentSpec.NewBlackfriday()})
        m = bytes.TrimPrefix(m, markdownTrimPrefix)
        m = bytes.TrimSuffix(m, markdownTrimSuffix)
        return template.HTML(m), nil