Add template function slice
authordigitalcraftsman <digitalcraftsman@users.noreply.github.com>
Sat, 27 Feb 2016 15:51:07 +0000 (16:51 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sat, 27 Feb 2016 16:04:45 +0000 (17:04 +0100)
docs/content/templates/functions.md
tpl/template_funcs.go

index 67537c70cf8299d16a274eac4b02489baf91d4fc..146ab8e93de4ef99b3c0f3511afc6341511b58b5 100644 (file)
@@ -75,6 +75,18 @@ or Create a map on the fly to pass into
     
 
 
+### slice
+
+`slice` allows you to create an array (`[]interface{}`) of all arguments that you pass to this function.
+
+One use case is the concatenation of elements in combination with `delimit`:
+
+```html
+{{ delimit (slice "foo" "bar" "buzz") ", " }}
+<!-- returns the string "foo, bar, buzz" -->
+```
+
+
 ### echoParam
 Prints a parameter if it is set.
 
index 0f71fed186e10849daa13048ac9750b0d675679b..ba6349298c67fee413b7415a4338fd7e082d0f34 100644 (file)
@@ -105,6 +105,11 @@ func dictionary(values ...interface{}) (map[string]interface{}, error) {
        return dict, nil
 }
 
+// slice returns a slice of all passed arguments
+func slice(args ...interface{}) []interface{} {
+       return args
+}
+
 func compareGetFloat(a interface{}, b interface{}) (float64, float64) {
        var left, right float64
        var leftStr, rightStr *string
@@ -1558,6 +1563,7 @@ func init() {
                "seq":          helpers.Seq,
                "shuffle":      shuffle,
                "singularize":  singularize,
+               "slice":        slice,
                "slicestr":     slicestr,
                "sort":         sortSeq,
                "split":        split,