class Liquid::Filters::Escape

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

Extended Modules

Defined in:

liquid/filters/escape.cr

Class Method Summary

Class Method Detail

def self.filter(data : Any, args : Array(Any) | Nil = nil) : Any #

[View source]