arnaud-lb / MtHaml

Multi target HAML (HAML for PHP, Twig, <your language here>)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Support Ruby 1.9 style attributes

chrisrichard opened this issue · comments

{:foo=>bar}

becomes

{foo: bar}

+1

note that html-style attributes are currently supported:

%p{:foo => "bar", :baz => "qux"}

becomes

%p(foo="bar" baz="qux")