Sha256: 194c5ed6edfc2f2a2857f9369d39f09a173d686652e73932ed22e41f3b5026a8
Contents?: true
Size: 782 Bytes
Versions: 6
Compression:
Stored size: 782 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\n<pre>pre\nworld</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\n<pre>pre\nworld</pre></p>"</span> ```
Version data entries
6 entries across 6 versions & 1 rubygems