mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
567 B
567 B
title | linkTitle | description | categories | keywords | menu | function | relatedFunctions | aliases | ||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
strings.ToUpper | upper | Converts all characters in a string to uppercase |
|
|
|
|
|
Note that upper
can be applied in your templates in more than one way:
{{ upper "BatMan" }} → "BATMAN"
{{ "BatMan" | upper }} → "BATMAN"