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
How to capture some liquid tag and rendering in html? The following code doesn't render what is expected:
{% capture r %} {% raw %} {% assign cultures = Culture | supported_cultures %} <ul>item</ul> {% endraw %} {% endcapture %} {{ r | escape }}
=>
{% assign cultures = Culture | supported_cultures %} &lt;ul&gt;item&lt;/ul&gt;
This is double-encoded.
Without | escape it is not encoded at all.
| escape
{% assign cultures = Culture | supported_cultures %} <ul>item</ul>
What is the way to get
{% assign cultures = Culture | supported_cultures %} <ul>item</ul>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
How to capture some liquid tag and rendering in html? The following code doesn't render what is expected:
=>
This is double-encoded.
Without
| escape
it is not encoded at all.What is the way to get
The text was updated successfully, but these errors were encountered: