mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
643 B
643 B
title | linkTitle | description | categories | keywords | menu | function | relatedFunctions | aliases | |||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
collections.Slice | slice | Creates a slice (array) of all passed arguments. |
|
|
|
|
|
One use case is the concatenation of elements in combination with the [delimit
function]:
{{ $s := slice "a" "b" "c" }}
{{ $s }} → [a b c]