mirror of
https://github.com/gohugoio/hugo.git
synced 2026-09-02 11:42:37 +00:00
7fd64f19c8
It's a beautiful thing. A thousand thanks, Bud. See PR rdwatters/hugo-docs-concept#118
575 B
575 B
title, description, godocref, date, publishdate, lastmod, tags, categories, menu, toc, ns, signature, workson, hugoversion, relatedfuncs, deprecated, draft, aliases
| title | description | godocref | date | publishdate | lastmod | tags | categories | menu | toc | ns | 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 |
|
|
|
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"