html2text icon indicating copy to clipboard operation
html2text copied to clipboard

Support multi-level <ul> lists

Open spekary opened this issue 9 years ago • 1 comments

It appears if you do this:

<ul>
  <li>Coffee</li>
  <li>Tea
    <ul>
      <li>Black tea</li>
      <li>Green tea</li>
    </ul>
  </li>
  <li>Milk</li>
</ul>

Html2Text will flatten the list. Just a request to support multiple level lists by adding additional tabs in front of each item per level.

spekary avatar Feb 17 '15 22:02 spekary