Taking more line space in docx file when ewe are using table contents

Hi team, below is the code and expected out but in docx file line spacing is more

in.docx (1.6 KB)

expected output

actual output

@QATESTGHS Could you please elaborate how to reproduce the problem? The attached document is HTML. If convert it to DOCX using the following simple code there are no additional space between rows:

Document doc = new Document(@"C:\Temp\in.html");
doc.Save(@"C:\Temp\out.docx");

out.docx (8.4 KB)