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