nurugger07 / calliope

An elixir haml parser

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Don't replace colons with '=' inside attribute values

knewter opened this issue · comments

The following:

%img{src: "http://placehold.it/80x80&text=[img]" }

gets parsed into:

<img src="http=//placehold.it/80x80&text=[img]" />

Notice the = instead of : inside the src attribute.

Done! Changes are in master

Woot!