github.com/jbramsden/hugo@v0.47.1/docs/content/en/functions/split.md (about)

     1  ---
     2  title: split
     3  # linktitle: split
     4  description: splits a string into substrings separated by a delimiter
     5  godocref:
     6  date: 2017-02-01
     7  publishdate: 2017-02-01
     8  lastmod: 2017-02-01
     9  categories: [functions]
    10  menu:
    11    docs:
    12      parent: "functions"
    13  keywords: [strings]
    14  signature: ["split STRING DELIM"]
    15  workson: []
    16  hugoversion:
    17  relatedfuncs: []
    18  deprecated: false
    19  aliases: []
    20  ---
    21  
    22  * `{{split "tag1,tag2,tag3" "," }}` → ["tag1" "tag2" "tag3"]
    23  
    24