mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
580 B
580 B
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"