What I am doing. I have the docx document that I am converting to HTML (I wnat ot be identical) than end user has to edit something and at the end I want to save it back into the Word document (docx)
I have converted the docx document into the HTML as
string filePath = @“E:\test.docx”;
Document doc = new Aspose.Words.Document(filePath);
HtmlSaveOptions opts = new HtmlSaveOptions(SaveFormat.Html);
SaveOutputParameters sop2 = doc.Save(@“E:\Resources\ConvertedFixed.html”, Aspose.Words.SaveFormat.HtmlFixed);
as you know fixed html will split this into one html and many other resources files - css, fnts, images, etc…
Now after editing html document, I want to save back that into the docx document. Then when converting I do not know how to say to Aspose to use these resources. Result is Word document without styles.
Is there any saving option or something like that.
Thanks