# [./spec/render/unescape_spec.rb:18](../../../spec/render/unescape_spec.rb#L18) ## Input ```haml !
hello
``` ## Faml ```htmlhello
``` ## Haml, Hamlit ```html !hello
``` # [./spec/render/unescape_spec.rb:34](../../../spec/render/unescape_spec.rb#L34) ## Input ```haml !~ "hello\n
pre\nworld" ``` ## Faml, Haml ```html
hello
pre world``` ## Hamlit ```html !~ "
hello\n
pre\nworld" ``` # [./spec/render/unescape_spec.rb:34](../../../spec/render/unescape_spec.rb#L34) ## Input ```haml %span!~ "
hello\n
pre\nworld" ``` ## Faml, Haml ```html
hello
pre world``` ## Hamlit ```html ~ "
hello\n
pre\nworld" ```