mirror of
https://github.com/gohugoio/hugoDocs.git
synced 2025-10-18 14:20:19 -04:00
519 B
519 B
title | linktitle | description | godocref | date | publishdate | lastmod | tags | categories | toc | ns | 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"