Save as HTML does not show styling for move Track Chnages

If you have a Word file with Track Changes turned on, and you copy/paste or drag a selected section, save that file and then convert it to HTML using Aspose, the resulting HTML will not having any styling on the original or newly moved sections of content.

I’ve attached a ZIP file that has example Word files, HTML files generated by Aspose and HTML files generated by Word for each to show the problem.

Thanks,
Andy
TrackChangesHTMLProblem.zip (49.6 KB)

@bsant

Unfortunately, Aspose.Words does not support move revisions when saving Word document to HTML. We logged this feature request as WORDSNET-16331 in our issue tracking system. You will be notified via this forum thread once this feature is available. We apologize for your inconvenience.

Could you please ZIP and attach the code example that you are using? We will investigate the issue and provide you more information on this issue.

Thanks. The code is extremely simple:

            String wordFile = @"e:\TrackChangesTesting_AddMove.docx";
            Document wordDoc = new Document(wordFile);

            String strHtmlDoc = new AsposeCommon().ConvertToHtml(wordDoc, true, true);
            XmlDocument xmlDoc = new XmlDocument();
            xmlDoc.LoadXml(strHtmlDoc);
            xmlDoc.Save(wordFile.Replace(".docx", ".html"));

Thanks,
Andy

@bsant

Thanks for your feedback. We will inform you via this forum thread once the feature (WORDSNET-16331) is available. Please let us know if you have any more queries.