mirror of
https://github.com/gohugoio/hugoDocs.git
synced 2025-10-04 16:33:12 -04:00
515 B
515 B
title | linktitle | description | godocref | date | publishdate | lastmod | tags | categories | toc | 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 |
|
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"