privateOmega / html-to-docx

HTML to DOCX converter
MIT License
373 stars 140 forks source link

ul element not properly displayed #243

Open traycho opened 5 months ago

traycho commented 5 months ago

Following html will produce only 1

<ul>
  <li>
    <p>1</p>
    <p>2</p>
    <p>3</p>
  </li>
</ul>
Screenshot 2024-03-20 at 16 06 52
epikoder commented 3 months ago
<ul>
  <li>
   <p>
       <span>1</span> <br/>
       <span>2</span> <br/>
       <span>3</span>
   </p>
  </li>
</ul>

This works