2017-03-27 16:32:31 -05:00

535 B

title linktitle description godocref date publishdate lastmod tags categories toc ns signature workson hugoversion relatedfuncs deprecated draft aliases
upper upper Converts all characters in a string to uppercase 2017-02-01 2017-02-01 2017-02-01
functions
upper INPUT
false false

upper converts all characters in string to uppercase. Note that upper can be applied in your templates in more than one way:

{{ upper "BatMan" }} → "BATMAN"
{{ "BatMan" | upper }} → "BATMAN"