hugo/docs/content/functions/slice.md
2017-07-18 10:33:58 +02:00

681 B

title description godocref date publishdate lastmod categories menu signature workson hugoversion relatedfuncs deprecated draft aliases toc
slice Creates a alice (array) of all passed arguments. 2017-02-01 2017-02-01 2017-02-01
functions
docs
parent
functions
slice ITEM...
false false
false

One use case is the concatenation of elements in combination with the delimit function:

{{% code file="slice.html" %}}

{{ delimit (slice "foo" "bar" "buzz") ", " }}
<!-- returns the string "foo, bar, buzz" -->

{{% /code %}}