projects
/
brevno-suite
/
hugo
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8f09e5f
)
tpl: Set RenderingContext.Config in markdownify
author
Albert Nigmatzianov
<albertnigma@gmail.com>
Thu, 6 Apr 2017 17:38:24 +0000
(19:38 +0200)
committer
Albert Nigmatzianov
<albertnigma@gmail.com>
Thu, 6 Apr 2017 19:02:37 +0000
(21:02 +0200)
tpl/tplimpl/template_funcs.go
patch
|
blob
|
history
diff --git
a/tpl/tplimpl/template_funcs.go
b/tpl/tplimpl/template_funcs.go
index 11ab4511c9958b926affeb59d7cf397e1efe05e9..2737533889f55a93fa300c8bf653ef151e3d8ed0 100644
(file)
--- 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