I am using Aspose.Words for Java for converting word document to html.
I am facing a problem while doing that. Any word within double quotes in the document does not show up correctly.
eg : cats have four "legs" to walk
generated html : cats have four “legs‿ to walk
This happens when saving the document using the default encoding which is UTF-8 as follows:
document.save(outputHtmlStream, SaveFormat.HTML);
I have refered the following thread on the forum
https://forum.aspose.com/t/120743
and have also tried changing to the US-ASCII encoding but it has its own problems. It shows up other characters which are not there as part of the word document.
Is there a way to get the proper html with correct encoding?