mtibben / html2text

PHP library to convert HTML to formatted plain text
567 stars 176 forks source link

Support multi-level <ul> lists #33

Open spekary opened 9 years ago

spekary commented 9 years ago

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.

ssanders commented 5 years ago

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

* Tea
** Black tea