aaronsw / html2text

Convert HTML to Markdown-formatted text.

Home Page:http://www.aaronsw.com/2002/html2text/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Paragraphs in lists

cheeaun opened this issue · comments

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.

Does this happen if you turn line wrapping off?