Sha256: 055cf9b1e2db2d205e7c9eb4a31ca76d0c929f6fdb47eef5bc12fc735d3e6fbd
Contents?: true
Size: 782 Bytes
Versions: 16
Compression:
Stored size: 782 Bytes
Contents
# [./spec/render/unescape_spec.rb:17](../../../spec/render/unescape_spec.rb#L17) ## Input ```haml !<p>hello</p> ``` ## Faml ```html <p>hello</p> ``` ## Haml, Hamlit ```html !<p>hello</p> ``` # [./spec/render/unescape_spec.rb:33](../../../spec/render/unescape_spec.rb#L33) ## Input ```haml !~ "<p>hello\n<pre>pre\nworld</pre></p>" ``` ## Faml, Haml ```html <p>hello <pre>pre
world</pre></p> ``` ## Hamlit ```html !~ "<p>hello\n<pre>pre\nworld</pre></p>" ``` # [./spec/render/unescape_spec.rb:33](../../../spec/render/unescape_spec.rb#L33) ## 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\n<pre>pre\nworld</pre></p>"</span> ```
Version data entries
16 entries across 16 versions & 1 rubygems