Sha256: 3aafb7fb82c1a79e7edbc3df28ff713f84d67c011aa6766c2b8a2248490dd034
Contents?: true
Size: 769 Bytes
Versions: 5
Compression:
Stored size: 769 Bytes
Contents
# [./spec/render/unescape_spec.rb:18](../../../spec/render/unescape_spec.rb#L18) ## Input ```haml !<p>hello</p> ``` ## Faml ```html <p>hello</p> ``` ## Haml, Hamlit ```html !<p>hello</p> ``` # [./spec/render/unescape_spec.rb:34](../../../spec/render/unescape_spec.rb#L34) ## Input ```haml !~ "<p>hello\n<pre>pre\nworld</pre></p>" ``` ## Faml, Haml ```html <p>hello <pre>pre
world</pre></p> ``` ## Hamlit ```html <p>hello <pre>pre world</pre></p> ``` # [./spec/render/unescape_spec.rb:34](../../../spec/render/unescape_spec.rb#L34) ## Input ```haml %span!~ "<p>hello\n<pre>pre\nworld</pre></p>" ``` ## Faml, Haml ```html <span><p>hello <pre>pre
world</pre></p></span> ``` ## Hamlit ```html <span><p>hello <pre>pre world</pre></p></span> ```
Version data entries
5 entries across 5 versions & 1 rubygems