To work around this problem, use a macro that sets a specified height for the table and removes the from the HTML.
WARNING: ANY USE BY YOU OF THE CODE PROVIDED IN THIS ARTICLE IS AT YOUR
OWN RISK. Microsoft provides this code "as is" without warranty of any
kind, either express or implied, including but not limited to the implied
warranties of merchantability and/or fitness for a particular purpose.
For more information about how to use the sample code in this article, click
the article number below to view the article in the Microsoft Knowledge
Base:
212536
OFF2000: How to Run Sample Code from Knowledge Base Articles
The following sample macro searches for the <TD> tag, removes the (space), and sets the height of the cell at 9.
Sub TableDeSpacer()
With ActiveDocument
For i = 0 To .all.Length - 1
If UCase(.all(i).tagName) = "TD" Then
If .all(i).innerHTML = " " Then
.all(i).Height = 9
End If
End If
Next
End With
End Sub