Closed
Description
https://help.usetrmnl.com/en/articles/10347358-custom-plugin-filters
We currently offer the following additional filters:
{{ 1234 | number_with_delimiter }} # => 1,234
# custom delimiter (default is comma)
{{ 1234 | number_with_delimiter: '.' }} # => 1.234
{{ 1000000 | number_with_delimiter: ' ' }} # => 1 000 000
# optional 2nd arg separates whole number from fractional value
{{ 1234.57 | number_with_delimiter: ' ', ',' }} # => 1 234,57
{{ 10420 | number_to_currency }} # => $10.420.00
# custom currency symbol
{{ 152350.69 | number_to_currency: '£' }} # => £152,350.69
# optional 2nd + 3rd args delimit + separate
{{ 1234.57 | number_to_currency: '£', '.', ',' }} # => £1.234,57
Metadata
Metadata
Assignees
Labels
No labels