slim-template / haml2slim

Haml to Slim converter.
http://slim-lang.com/
120 stars 20 forks source link

Error converting tags with attributes #20

Open andrewkolesnikov opened 11 years ago

andrewkolesnikov commented 11 years ago

For example, %a{:href => ""} foo produces a href="#" (foo is lost)

Also,

#slideWidget{'data-slideshow-nav' => 'true', 'data-slideshow-pager' => 'true', 'data-slideshow-captions' => 'false'} produces #slideWidget 'data-slideshow-nav' =(>)'true', 'data-slideshow-pager' =(>)'true', 'data-slideshow-captions' =(>)'false'

andrewkolesnikov commented 11 years ago

Could latter be ruby new style hashes related? $ ruby -v ruby 1.9.3p327 (2012-11-10 revision 37606) [x86_64-darwin10.8.0]