Add a chomp function.
authorAustin Ziegler <austin@zieglers.ca>
Wed, 10 Dec 2014 01:37:51 +0000 (20:37 -0500)
committerbep <bjorn.erik.pedersen@gmail.com>
Fri, 2 Jan 2015 10:50:22 +0000 (11:50 +0100)
- Mostly useful in pipelines.

docs/content/templates/functions.md
tpl/template.go

index 4138ffde9caf4e926a33dcce5a663241c4f25c29..b0fa0d9ed73b42964c02a5de69103b994280e901 100644 (file)
@@ -252,6 +252,11 @@ Convert all characters in string to titlecase.
 
 e.g. `{{title "BatMan"}}` → "Batman"
 
+### chomp
+Removes any trailing newline characters. Useful in a pipeline to remove newlines added by other processing (including `markdownify`).
+
+e.g., `{{chomp "<p>Blockhead</p>\n"` → `"<p>Blockhead</p>"`
+
 ### highlight
 Take a string of code and a language, uses Pygments to return the syntax
 highlighted code in HTML. Used in the [highlight
index 197703a73d0b1a08375410694739952efd35bab1..ef0096ceff36cc9dbeb09dbdf31ab7e4f5f07945 100644 (file)
@@ -29,6 +29,7 @@ import (
        "os"
        "path/filepath"
        "reflect"
+       "regexp"
        "sort"
        "strconv"
        "strings"
@@ -37,6 +38,7 @@ import (
 var localTemplates *template.Template
 var tmpl Template
 var funcMap template.FuncMap
+var chompRegexp *regexp.Regexp
 
 type Template interface {
        ExecuteTemplate(wr io.Writer, name string, data interface{}) error
@@ -667,6 +669,15 @@ func RelRef(page interface{}, ref string) template.HTML {
        return refPage(page, ref, "RelRef")
 }
 
+func Chomp(text interface{}) (string, error) {
+       s, err := cast.ToStringE(text)
+       if err != nil {
+               return "", err
+       }
+
+       return chompRegexp.ReplaceAllString(s, ""), nil
+}
+
 func SafeHtml(text string) template.HTML {
        return template.HTML(text)
 }
@@ -1022,5 +1033,8 @@ func init() {
                "partial":     Partial,
                "ref":         Ref,
                "relref":      RelRef,
+               "chomp":       Chomp,
        }
+
+       chompRegexp = regexp.MustCompile("[\r\n]+$")
 }