diff options
author | Bjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com> | 2019-10-21 10:21:37 +0200 |
---|---|---|
committer | Bjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com> | 2019-10-21 10:21:51 +0200 |
commit | 39121de4d991bdcf5f202da4d8d81a8ac6c149fc (patch) | |
tree | 97e0b638fea1d898de9e297732d1044b49bfba8e /docs/content/en/functions/split.md | |
parent | 180195aa342777fece1b29a08ec89456d7996c61 (diff) | |
download | hugo-39121de4d991bdcf5f202da4d8d81a8ac6c149fc.tar.gz hugo-39121de4d991bdcf5f202da4d8d81a8ac6c149fc.zip |
docs: Replace /docs
Diffstat (limited to 'docs/content/en/functions/split.md')
-rw-r--r-- | docs/content/en/functions/split.md | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/docs/content/en/functions/split.md b/docs/content/en/functions/split.md deleted file mode 100644 index c42f8eb9d..000000000 --- a/docs/content/en/functions/split.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: split -# linktitle: split -description: splits a string into substrings separated by a delimiter -godocref: -date: 2017-02-01 -publishdate: 2017-02-01 -lastmod: 2017-02-01 -categories: [functions] -menu: - docs: - parent: "functions" -keywords: [strings] -signature: ["split STRING DELIM"] -workson: [] -hugoversion: -relatedfuncs: [] -deprecated: false -aliases: [] ---- - -* `{{split "tag1,tag2,tag3" "," }}` → ["tag1" "tag2" "tag3"] - - |