escape_once

Escapes a string without changing existing escaped entities. It doesn’t change strings that don’t have anything to escape.

Input

{{ "1 < 2 & 3" | escape_once }}

Output

1 &lt; 2 &amp; 3

Input

{{ "1 &lt; 2 &amp; 3" | escape_once }}

Output

1 &lt; 2 &amp; 3

© 2005, 2006 Tobias Luetke
Licensed under the MIT License.
https://shopify.github.io/liquid/filters/escape_once/