pqzx / html2docx

Convert html to docx
MIT License
69 stars 49 forks source link

Rowspan, Colspan support added handled #34

Open shourav9884 opened 2 years ago

shourav9884 commented 2 years ago

Added support for rowspan, colspan. if one table has structure like below

<table>
<tr><td rowspan="2"></td><td></td><td></td></tr>
<tr><td></td><td></td></tr>
</table>

will be converted perfectly to docx with merged cell now which was missing previously

pqzx commented 2 years ago

Hi @shourav9884 , thanks for the PR. Can you add a description/summary of what you've added and why?

shourav9884 commented 2 years ago

@pqzx added some description... please let me know if it is enough