Sha256: 0841fcd8f73f4b2d54a1dbe2220c1704bd791753b85826e2be1203dc43f68c1c
Contents?: true
Size: 462 Bytes
Versions: 11
Compression:
Stored size: 462 Bytes
Contents
# [./spec/render/sanitize_spec.rb:25](../../../spec/render/sanitize_spec.rb#L25) ## Input ```haml &~ "<p>hello</p>" ``` ## Faml, Haml ```html <p>hello</p> ``` ## Hamlit ```html &~ "<p>hello</p>" ``` # [./spec/render/sanitize_spec.rb:25](../../../spec/render/sanitize_spec.rb#L25) ## Input ```haml %span&~ "<p>hello</p>" ``` ## Faml, Haml ```html <span><p>hello</p></span> ``` ## Hamlit ```html <span>~ "<p>hello</p>"</span> ```
Version data entries
11 entries across 11 versions & 1 rubygems