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

`code` tag test output is wrong and incomplete #77

Closed donpark closed 10 years ago

donpark commented 10 years ago
<code>
  blah
  blah
</code>

should generate piped text

code
    | blah
    | blah

not:

code
    blah
    blah

Also, inline test case is needed.

<code>inlined</code>

should generate

code inline
donpark commented 10 years ago

pre tag handling is also not general enough.

z0d14c commented 10 years ago

you can close this bad boy now

donpark commented 10 years ago

fixed by #83.