twilson63 / html2haml

Convert HTML Snippets to Haml
http://html2haml.heroku.com
MIT License
180 stars 82 forks source link

Wrong conversion #30

Open zuf opened 9 years ago

zuf commented 9 years ago
<p><h4>h4</h4><b>b</b> text</p>

converts to

%p
%h4 h4
%b b
text

but should be

%p
  %h4 h4
  %b b
  text