html2text icon indicating copy to clipboard operation
html2text copied to clipboard

Support multi-level <ul> lists

Open spekary opened this issue 10 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

I tried #91 e7260c3. It works well. 👍 But our app trims even &nbsp;s. Add an option like this?

* Tea
** Black tea

ssanders avatar Jul 12 '19 19:07 ssanders