Convert HTML fixed to docx is not as expected

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

@risajev,

Thanks for your inquiry. Please note that Aspose.Words does not import HtmlFixed file format into its DOM. We suggest you please save the document to HTML file format and import it back into Aspose.Words’ DOM after modifying the HTML. Hope this helps you.

Please check the load formats of Aspose.Words from following link.
LoadFormat Enumeration