v9.37.0
Liquid filter that directly returns the value of the variable. Useful when outputEscape is set.
Auto escapeBy default
outputEscape
is not set. That means LiquidJS output is not escaped by default, thusraw
filter is not useful untiloutputEscape
is set.
Input (outputEscape
not set)
{{ "<" }}
Output
<
Input (outputEscape="escape"
)
{{ "<" }}
Output
<
Input (outputEscape="json"
)
{{ "<" }}
Output
"<"
Input (outputEscape="escape"
)
{{ "<" | raw }}
Output
<