class Liquid::Filters::Escape
- Liquid::Filters::Escape
- 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 {{ "Have you read 'James & the Giant Peach'?" | escape }}
Output Have you read 'James & the Giant Peach'?
Input {{ "Tetsuro Takara" | escape }}
Output Tetsuro Takara