mirror of
https://github.com/tiennm99/hugoDocs.git
synced 2026-09-17 08:21:16 +00:00
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.
754 B
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 |
|
|
|
|
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 >}}