Files
hugo/content/en/functions/upper.md
T
Andreas Deininger ce60bb5729 Add docu for undocumented functions (#1907)
* Document string manipulation functions

* Document crypto.FNV32a function

* Document functions duration and time.ParseDuration

* Changes according to review feedback
2022-11-22 07:40:31 -08:00

554 B

title, description, date, publishdate, lastmod, keywords, categories, menu, toc, signature, workson, hugoversion, relatedfuncs, deprecated, draft, aliases
title description date publishdate lastmod keywords categories menu toc signature workson hugoversion relatedfuncs deprecated draft aliases
upper Converts all characters in a string to uppercase 2017-02-01 2017-02-01 2017-02-01
functions
docs
parent
functions
upper INPUT
strings.ToUpper INPUT
false false

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

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