re-simplify SafeHTML function
authorspf13 <steve.francia@gmail.com>
Sun, 15 Nov 2015 16:10:35 +0000 (11:10 -0500)
committerspf13 <steve.francia@gmail.com>
Sun, 15 Nov 2015 16:10:35 +0000 (11:10 -0500)
tpl/template_funcs.go

index 3963ed4d0139f471aef4a156237179fb05ddb24b..53666b925599eabdec277ac2669f3e7db3cfc6aa 100644 (file)
@@ -1181,6 +1181,8 @@ func SafeURL(text string) template.URL {
        return template.URL(text)
 }
 
+func SafeHTML(a string) template.HTML { return template.HTML(a) }
+
 func doArithmetic(a, b interface{}, op rune) (interface{}, error) {
        av := reflect.ValueOf(a)
        bv := reflect.ValueOf(b)
@@ -1380,7 +1382,7 @@ func init() {
                "isSet":        IsSet,
                "isset":        IsSet,
                "echoParam":    ReturnWhenSet,
-               "safeHTML":     func(a string) template.HTML { return template.HTML(a) },
+               "safeHTML":     SafeHTML,
                "safeCSS":      SafeCSS,
                "safeURL":      SafeURL,
                "absURL":       func(a string) template.HTML { return template.HTML(helpers.AbsURL(a)) },