e.g. `{{ .Title | markdownify }}`
+### plainify
+
+Strips any HTML and returns the plain text version.
+
+e.g. `{{ "<b>BatMan</b>" | plainify }}` → "BatMan"
+
### pluralize
Pluralize the given word with a set of common English pluralization rules.
if err != nil {
return "", err
}
+
return template.HTML(helpers.Emojify([]byte(str))), nil
}
+// plainify strips any HTML and returns the plain text version.
+func plainify(in interface{}) (string, error) {
+ s, err := cast.ToStringE(in)
+
+ if err != nil {
+ return "", err
+ }
+
+ return helpers.StripHTML(s), nil
+}
+
func refPage(page interface{}, ref, methodName string) template.HTML {
value := reflect.ValueOf(page)
"mul": func(a, b interface{}) (interface{}, error) { return helpers.DoArithmetic(a, b, '*') },
"ne": ne,
"partial": partial,
+ "plainify": plainify,
"pluralize": pluralize,
"readDir": readDir,
"ref": ref,
safeCSS: {{ "Bat&Man" | safeCSS | safeCSS }}
safeURL: {{ "http://gohugo.io" | safeURL | safeURL }}
safeJS: {{ "(1*2)" | safeJS | safeJS }}
+plainify: {{ plainify "Hello <strong>world</strong>, gophers!" }}
`
expected := `chomp: <p>Blockhead</p>
dateFormat: Wednesday, Jan 21, 2015
safeCSS: Bat&Man
safeURL: http://gohugo.io
safeJS: (1*2)
+plainify: Hello world, gophers!
`
var b bytes.Buffer