# [./spec/render/filters/escaped_spec.rb:5](../../../../spec/render/filters/escaped_spec.rb#L5) ## Input ```haml %span start :escaped hello #{'
world
'} hello %span end ``` ## Faml, Haml ```html start hello <p>world</p> <span>hello</span> end ``` ## Hamlit ```html start hello <p>world</p> <span>hello</span> end ```