Open K-Kumar-01 opened 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>
To separate two tickets, margins/paddings and other styles
Currently when we are converting html to docx, we don't handle the styles which are present in ul and ol tags.
Sample cases: