From: spf13 Date: Thu, 12 Nov 2015 15:53:21 +0000 (-0500) Subject: rewrite safeHTML function X-Git-Tag: v0.15~63 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=062f6c33837dc9755959ca9f3a5659204b0b3857;p=brevno-suite%2Fhugo rewrite safeHTML function --- diff --git a/tpl/template_funcs.go b/tpl/template_funcs.go index f704f0a4..3963ed4d 100644 --- a/tpl/template_funcs.go +++ b/tpl/template_funcs.go @@ -1167,10 +1167,6 @@ func DateFormat(layout string, v interface{}) (string, error) { return t.Format(layout), nil } -func SafeHTML(text string) template.HTML { - return template.HTML(text) -} - // "safeHTMLAttr" is currently disabled, pending further discussion // on its use case. 2015-01-19 func SafeHTMLAttr(text string) template.HTMLAttr { @@ -1384,7 +1380,7 @@ func init() { "isSet": IsSet, "isset": IsSet, "echoParam": ReturnWhenSet, - "safeHTML": SafeHTML, + "safeHTML": func(a string) template.HTML { return template.HTML(a) }, "safeCSS": SafeCSS, "safeURL": SafeURL, "absURL": func(a string) template.HTML { return template.HTML(helpers.AbsURL(a)) },