# [./spec/render/filters/escaped_spec.rb:4](../../../../spec/render/filters/escaped_spec.rb#L4) ## 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 ```