Word转html问题

1、目前word里面着重号和波浪线无法识别
2、mathtype能有办法转成mathml公式吗?目前转换成图片有的公式会不清晰
3、新版本上下标无法识别了;htmlSaveOption是有新的属性需要配置才能识别上下标吗?
下面这个word转换出来达不到实际的效果
1.docx (13.8 KB)

@Mr_right 不幸的是,无法将MathML的MathType方程输出到HTML中。 但是,在您的情况下,您可以将metafiles(等式的视觉表示为元代表)作为SVG,以使该方程在输出HTML中更清晰:

Document doc = new Document(@"C:\Temp\in.docx");

HtmlSaveOptions opt = new HtmlSaveOptions();
opt.MetafileFormat = HtmlMetafileFormat.Svg;

doc.Save(@"C:\Temp\out.html", opt);

out.zip (1.6 KB)

那上下标问题,目前上下标转换不出来

@Mr_right
We have opened the following new ticket(s) in our internal issue tracking system and will deliver their fixes according to the terms mentioned in Free Support Policies.

Issue ID(s): WORDSNET-25156

You can obtain Paid Support Services if you need support on a priority basis, along with the direct access to our Paid Support management team.