Hi',
I've this html structure:
<table id="tab1">
...
</table>
<table id="tab2">
...
</table>
I tried also to wrap both tables in a single p tag or every single table in a p tag, but result doesn't change.
Inside the resulting docx a paragraph is added between the tables, in xml I've this:
</w:tbl>
<w:p/>
<w:tbl>
instead of this (manually modified in the docx after exporting):
</w:tbl>
<w:tbl>
How can I achieve this?
Thanks, Federico