Skip to content
Mike Bridge edited this page Apr 1, 2015 · 24 revisions

Expressions in Liquid.NET can be grouped by parentheses, which is not currently possible in liquid.

    {% if (false and true) or true %}Result #1 is true{% endif %}
    {% if false and (true or true) %}Result #2 is true{% endif %}

==> Result #1: true

Clone this wiki locally