# [./spec/render/unescape_spec.rb:17](../../../spec/render/unescape_spec.rb#L17) ## Input ```haml !

hello

``` ## Faml ```html

hello

``` ## Haml, Hamlit ```html !

hello

``` # [./spec/render/unescape_spec.rb:33](../../../spec/render/unescape_spec.rb#L33) ## Input ```haml !~ "

hello\n

pre\nworld

" ``` ## Faml, Haml ```html

hello

pre
world

``` ## Hamlit ```html !~ "

hello\n

pre\nworld

" ``` # [./spec/render/unescape_spec.rb:33](../../../spec/render/unescape_spec.rb#L33) ## Input ```haml %span!~ "

hello\n

pre\nworld

" ``` ## Faml, Haml ```html

hello

pre
world

``` ## Hamlit ```html ~ "

hello\n

pre\nworld

"
```