currency

Format the value as a currency.

1
{{$currency [value]}}
Example
format JSON XML
Data JSON
1
2
3
4
5
{
"Product": {
"price": "5350200.6450"
}
}
HTML
1
{{$currency Product.price}}
Result
Data XML
1
2
<Product price="5350200.6450">
</Product>
HTML
1
{{$currency Product._price}}
Result

Params

1
2
3
4
{{$currency
"value"
decimals="2"
}}