Add plainify template function
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 3 Mar 2016 14:53:15 +0000 (15:53 +0100)
committerSteve Francia <steve.francia@gmail.com>
Tue, 22 Mar 2016 00:27:25 +0000 (20:27 -0400)
To strip away any HTML. May be useful for the .Title in head etc.

People may shoot themself in the foot with this, maybe ...

The replacement function is pretty fast.

docs/content/templates/functions.md
tpl/template_funcs.go
tpl/template_funcs_test.go

index 984efc9b14809fc6591a67df14ff7bc1854e38b5..ef576bb605b61fb0c41f90da43f97bb250d40261 100644 (file)
@@ -448,6 +448,12 @@ Runs the string through the Markdown processor. The result will be declared as "
 
 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.
 
index 29bb6dd0449c6027fd1ae462d5bd72bf3e390934..5fb496c14d06a81dd04cdbf564a9459860835479 100644 (file)
@@ -1169,9 +1169,21 @@ func emojify(in interface{}) (template.HTML, error) {
        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)
 
@@ -1674,6 +1686,7 @@ func init() {
                "mul":          func(a, b interface{}) (interface{}, error) { return helpers.DoArithmetic(a, b, '*') },
                "ne":           ne,
                "partial":      partial,
+               "plainify":     plainify,
                "pluralize":    pluralize,
                "readDir":      readDir,
                "ref":          ref,
index 983a97d2a7c84c169d3e95665e1ffdd2e5d0a408..77cd52a3378e3475614558ec533009d35d055dde 100644 (file)
@@ -108,6 +108,7 @@ safeHTML: {{ "Bat&Man" | safeHTML | safeHTML }}
 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
@@ -151,6 +152,7 @@ safeHTML: Bat&Man
 safeCSS: Bat&amp;Man
 safeURL: http://gohugo.io
 safeJS: (1*2)
+plainify: Hello world, gophers!
 `
 
        var b bytes.Buffer