donpark / html2jade

Converts HTML to Jade template. Not perfect but useful enough for non-daily conversions.
MIT License
1.18k stars 157 forks source link

Apostrophes in attributes are replaced with double quotes #72

Closed pjeby closed 10 years ago

pjeby commented 10 years ago

E.g. this:

<img title="Joe's Place" />

Becomes:

img(title='Joe"s Place')
donpark commented 10 years ago

Sorry. Didn't realize my original attribute value quoting logic was so Neanderthal. Fixed in 0.7.1.

pjeby commented 10 years ago

Awesome! Thanks.