Hi,
When converting a DOCX with a metafile that contains math subscripts or superscripts to an HTML output with HtmlSaveOptions.MetafileFormat set to Svg, I noticed the text became question marks (?).
Code:
var doc = new Document(@".\test.docx");
var option = new HtmlSaveOptions();
option.MetafileFormat = HtmlMetafileFormat.Svg;
doc.Save(@".\out.html", option);
We are using SVG for MetafileFormat because it offers the best quality in HTML output however this issue has blocked us from using the feature properly.
I’ve attached the test file and a screenshot for your reference. Could you please take a look?
test.zip (18.5 KB)
Thanks,