upper - pfaciana/latte-js GitHub Wiki
Used to uppercase a variable. This is equivalent to the PHP strtoupper() function.
Template:
{$articleTitle = 'If Strike isn\'t Settled Quickly it may Last a While.'}
{$articleTitle}
{$articleTitle|upper}
output:
If Strike isn't Settled Quickly it may Last a While.
IF STRIKE ISN'T SETTLED QUICKLY IT MAY LAST A WHILE.
see also upper in PHP Smarty documentation.