hugo/docs/content/en/functions/upper.md
2023-05-22 16:47:07 +02:00

404 B

title description keywords categories menu toc signature relatedfuncs
upper Converts all characters in a string to uppercase
functions
docs
parent
functions
upper INPUT
strings.ToUpper INPUT

Note that upper can be applied in your templates in more than one way:

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