We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Expectations:
{{ 2 == 3 }}
2
{{ 2 == 3 | plus : 10 | minus : 3 }}
9
The text was updated successfully, but these errors were encountered:
This runs contrary to other languages such as javascript where
const cool = { "colour": "blue" }; const apples = { "taste": "sweet" }; console.log(cool && apples);
returns
{taste: 'sweet'}
Tho if this is part of the liquid standard that's fine. Just thought I should mention it.
Sorry, something went wrong.
It is part of the liquid standard ;) Was a shock to me too
No branches or pull requests
Expectations:
{{ 2 == 3 }}
returns2
{{ 2 == 3 | plus : 10 | minus : 3 }}
returns9
The text was updated successfully, but these errors were encountered: