You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Extending the ::i flag with a format option should insert a thousand separator to the message, e.g.
template: "Calories tracked today: {{sum()::'i}}" - I think the official format if %'i to insert the thousand separator.
Expected output: "Calories tracked today: 18,850"
Current Behavior
template: "Calories tracked today: {{sum()::'i}}"
Current output: The ' (apostrophe) breaks the syntax, the template is not parsed
The text was updated successfully, but these errors were encountered:
When using the
summary
output, my sum() exceeds 1000. I want to display a thousand separator (ideally a localized one), but this is not working.Parsed template: "Calories tracked today: 18850"
Expected Behavior
Extending the
::i
flag with a format option should insert a thousand separator to the message, e.g.template: "Calories tracked today: {{sum()::'i}}"
- I think the official format if%'i
to insert the thousand separator.Expected output: "Calories tracked today: 18,850"
Current Behavior
template: "Calories tracked today: {{sum()::'i}}"
Current output: The
'
(apostrophe) breaks the syntax, the template is not parsedThe text was updated successfully, but these errors were encountered: