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
I've looked at the code but I still can't figure out what Liquid.evalValue() does.
Liquid.evalValue()
The text was updated successfully, but these errors were encountered:
Liquid.evalValue() calls the parser and render for a Liquid output (which is delimited by {{ and }}). For example, it transforms a string like "xx" | capitalize to XX. Hope these test cases make it clear for you: https://github.com/harttle/liquidjs/blob/master/test/render.js#L53-L65
{{
}}
"xx" | capitalize
XX
It should have been named to evalOutput.
evalOutput
Sorry, something went wrong.
Thanks for the explanation and for pointing me to tests, I'll take a look there.
LiquidExpression
evalExpression
No branches or pull requests
I've looked at the code but I still can't figure out what
Liquid.evalValue()
does.The text was updated successfully, but these errors were encountered: