Compare two word document content using aspose.words hyperlink modification not highlights in c# application

Hi All,

i have compare two word document content using aspose.words hyperlink modification not highlights. In the existing master file having one hyper link if i am comparing existing file with modified hyper link , its not getting highlighted

@vengatachalamg4 Could you please attach your sample documents here for testing? We will check the issue and provide you more information.

HyperlinkMaster.docx (12.4 KB)
hyperlinkVersion1.docx (11.5 KB)

Herewith attached sample file

@vengatachalamg4 Thank you for additional information. Unfortunately, I cannot reproduce the problem on my side. I used the latest 23.2 version of Aspose.Words and the following simple code for testing:

Document original = new Document(@"C:\Temp\original.docx");
Document changed = new Document(@"C:\Temp\changed.docx");
original.Compare(changed, "test", DateTime.Now);
original.Save(@"C:\Temp\out.docx");

The output produced by Aspose.Words looks the same as output produced by MS Word after comparing your documents:
Aspose.Words: out.docx (10.6 KB)
MS Word 2019: ms.docx (13.5 KB)