TurboDocx / html-to-docx

HTML to DOCX converter
https://TurboDocx.com
MIT License
48 stars 5 forks source link

Handle styles in ol and ul tags. #31

Open K-Kumar-01 opened 4 months ago

K-Kumar-01 commented 4 months ago

Currently when we are converting html to docx, we don't handle the styles which are present in ul and ol tags.

Sample cases:

<ul style="font-family: 'Verdana', sans-serif; font-size: 12px; list-style-type: square;">
  <li>Item 1</li>
  <li>Item 2
    <ul style="font-size: 11px; list-style-type: circle;">
      <li>Subitem 1</li>
      <li>Subitem 2</li>
    </ul>
  </li>
  <li>Item 3</li>
</ul>
<ol style="font-family: 'Times New Roman', serif; font-size: 16px; font-weight: bold; line-height: 1.5;">
  <li>First</li>
  <li>Second</li>
  <li>Third</li>
</ol>
K-Kumar-01 commented 4 months ago

To separate two tickets, margins/paddings and other styles