Last pages of Docx to html conversion don't match

Hi Support,
I have converted docx to html using Aspose.Words .net 17.8
the last pages after converting to html didn’t match can u look into it
have the attachment uploaded in the below url
https://ufile.io/robs1

Thanks,
Rajesh Sanam

@rajesh.sanam,

Thanks for your inquiry. Your document contains the footnotes and these are exported at the end of output HTML. If you do not want to export footnotes in output HTML, please use following code example to remove them.

Document doc = new Document(MyDir + "in.docx");
doc.GetChildNodes(NodeType.Footnote, true).Clear();
doc.Save(MyDir + "17.8.html");