mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-23 21:53:09 +02:00
798 B
798 B
title, description, categories, keywords, menu, function, relatedFunctions, aliases
title | description | categories | keywords | menu | function | relatedFunctions | aliases | |||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
strings.TrimPrefix | Returns a given string s without the provided leading prefix string. If s doesn't start with prefix, s is returned unchanged. |
|
|
|
|
|
Given the string "aabbaa"
, the specified prefix is only removed if "aabbaa"
starts with it:
{{ strings.TrimPrefix "a" "aabbaa" }} → "abbaa"
{{ strings.TrimPrefix "aa" "aabbaa" }} → "bbaa"
{{ strings.TrimPrefix "aaa" "aabbaa" }} → "aabbaa"