slice
Syntax
slice ITEM...
One use case is the concatenation of elements in combination with the delimit
function:
slice.html
{{ $sliceOfStrings := slice "foo" "bar" "buzz" }}
<!-- returns the slice [ "foo", "bar", "buzz"] -->
{{ delimit ($sliceOfStrings) ", " }}
<!-- returns the string "foo, bar, buzz" -->