http://haml.info/docs/yardoc/file.REFERENCE.html#html5_custom_data_attributes ``` .text{ :data => { :elem => "text" } } ``` should be converted to ``` slim .text data-elem="text" ``` Currently those attributes are copied over with the hash directly, which breaks the template. Thanks!
http://haml.info/docs/yardoc/file.REFERENCE.html#html5_custom_data_attributes
should be converted to
Currently those attributes are copied over with the hash directly, which breaks the template. Thanks!