From 260b55ea56ea8998431aca2b80d2b1e47c6a31c3 Mon Sep 17 00:00:00 2001 From: Albert Nigmatzianov Date: Thu, 6 Apr 2017 19:38:24 +0200 Subject: [PATCH] tpl: Set RenderingContext.Config in markdownify --- tpl/tplimpl/template_funcs.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tpl/tplimpl/template_funcs.go b/tpl/tplimpl/template_funcs.go index 11ab4511c..273753388 100644 --- a/tpl/tplimpl/template_funcs.go +++ b/tpl/tplimpl/template_funcs.go @@ -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