donpark / html2jade

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

.jade converted with the html file inside #51

Closed geedmo closed 11 years ago

geedmo commented 11 years ago

Hi, I'm on Fedora18 Converting a single file like this (123.html)

<html>
<head></head>
<body>
<h1>HOLA</h1>
</body>
</html>

Generates this output

html
  body /home/geedmo/123.html

Web converter works fine, so there's some conflict with my system, any idea for this behavior?

donpark commented 11 years ago

it's not just you. looks like something broke html2jade completely. will take a look.

donpark commented 11 years ago

html2jade works fine with jsdom version 0.6.2 but breaks with jsdom version 0.6.3+. looking into why that is.

donpark commented 11 years ago

I've updated html2jade (version 0.4.2) so it requires jsdom version to be 0.6.2 or less for now. I should be able to fix the real problem within a week.

geedmo commented 11 years ago

Right now is working fine . Great Job. Thanks.