Files
hugoDocs/content/en/functions/slice.md
T
Michael W.C. WildingandBjørn Erik Pedersen 9f61dac7af Update slice.md
Should include simple case.  By combining in to a single step with the delimit function it confuses that this is the reference for the slice function.  My solution is just to add an interim step illustrating the simple case and feeding that back into the delimit function.
2022-09-06 22:35:29 +02:00

754 B

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

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

{{< code file="slice.html" >}} {{ $sliceOfStrings := slice "foo" "bar" "buzz" }}

{{ delimit ($sliceOfStrings) ", " }}

{{< /code >}}