aaronsw / html2text

Convert HTML to Markdown-formatted text.
http://www.aaronsw.com/2002/html2text/
GNU General Public License v3.0
2.61k stars 412 forks source link

Paragraphs in lists #34

Open cheeaun opened 12 years ago

cheeaun commented 12 years ago

For this HTML:

<ul>
    <li>
        <p>Test</p>
        <p>Test</p>
    </li>
</ul>

should generate:

- Test

    Test

instead of:

- Test

Test

This is probably related to issue #17.

aaronsw commented 12 years ago

Does this happen if you turn line wrapping off?

cheeaun commented 12 years ago

@aaronsw Yeap.