We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Liquid.NET can group if expressions using parentheses, which is not currently possible in liquid.
if
{% if (false and true) or true %}Result #1 is true{% endif %} {% if false and (true or true) %}Result #2 is true{% endif %}
==> Result #1 is true
You can negate an expression with not:
not
{% if not false %}Not false is true.{% endif %}
===> Not false is true.