class Liquid::Filters::EscapeOnce
- Liquid::Filters::EscapeOnce
- Reference
- Object
Overview
escape
Escapes a string by replacing characters with escape sequences (so that the string can be used in a URL, for example). It doesn’t change strings that don’t have anything to escape.
Input {{ "1 < 2 & 3" | escape_once }}
Output 1 < 2 & 3
Input {{ "1 < 2 & 3" | escape_once }}
Output 1 < 2 & 3