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

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