Hi,
We do get an unwanted space in docx files generated with phpdocx at the beginning of table cells.
It happens for example in this case:
<table>
<tbody>
<tr>
<td style="border-bottom:solid #000000;border-left:solid #000000;border-right:solid #000000;border-top:solid #000000;width:20%;">Test</td>
<td style="border-bottom:solid #000000;border-left:solid #000000;border-right:solid #000000;border-top:solid #000000;width:80%;">Has extra space in front when <strong>bold</strong> is used</td>
</tr>
</tbody>
</table>
WIth the following embedhtml settings:
'parseDivs' => 'paragraph',
'addDefaultStyles' => true,
'disableWrapValue' => true,
'useHTMLExtended' => true,
'downloadImages' => true,
'parseFloats' => true,
'strictWordStyles' => false,
We already tried it using `removeLineBreaks`, but that removes other spaces that we don't want to have removed.
What causes these spaces and how can we prevent these?