mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-23 21:53:09 +02:00
580 B
580 B
title, linkTitle, description, categories, keywords, menu, function, relatedFunctions, aliases
title | linkTitle | description | categories | keywords | menu | function | relatedFunctions | aliases | ||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
strings.ToLower | lower | Converts all characters in the provided string to lowercase. |
|
|
|
|
|
Note that lower
can be applied in your templates in more than one way:
{{ lower "BatMan" }} → "batman"
{{ "BatMan" | lower }} → "batman"