TurboDocx / html-to-docx

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

Fix spacing issues in example files #47

Closed nicolasiscoding closed 3 weeks ago

nicolasiscoding commented 1 month ago

image

        <p>
         paragraph <strong>temporary</strong> <em>lorem</em> <u>test tag</u>
        </p>
shareefalis commented 1 month ago

I had to use a workaround involving spaces in italic inner html

i.innerHTML = ' ' + element.innerHTML + ' ';

This case also impact the <i> tag, not just <em> tag

shareefalis commented 3 weeks ago

You can close this, i tested it on my app end. it is working well! Thanks!