mirror of
https://github.com/askama-rs/askama.git
synced 2025-09-28 05:21:14 +00:00

This change allows simplifying the use of filter expressions, because you won't have to care about spaces around the `|` pipe operator.
8 lines
135 B
HTML
8 lines
135 B
HTML
{{ 3 * 4 / 2 -}}
|
|
{{ 26 / 2 % 7 -}}
|
|
{{ 3 % 2 * 6 -}}
|
|
{{ 1 * 2 + 4 -}}
|
|
{{ 11 - 15 / 3 -}}
|
|
{{ 4 + 5 % 3 -}}
|
|
{{ 4 bitor 2 + 5 bitand 2 -}}
|