Word转Html手写批注转换错误

文档中有手写的批注,转换出来的html是一系列的空div
源文档及转换后的html见附件Examples.zip (610.4 KB)

转换代码为
Document document = new Document(sourceFileName);
HtmlFixedSaveOptions options = new HtmlFixedSaveOptions();
options.setUseTargetMachineFonts( false );
options.setUseHighQualityRendering( true );
options.setEncoding(Charset.forName(“UTF-8”));
options.setExportEmbeddedFonts( true );
options.setShowPageBorder( true );
document.acceptAllRevisions();
// options.setPrettyFormat(true);
document.save(targetFileName, options);

@wangwenyou,

我们对场景进行了测试,并设法在我们的最终重现了同样的问题。 为了更正,我们在问题跟踪系统中记录了此问题。 这个问题的ID是WORDSNET-19107。 我们将进一步研究这个问题的细节,并让您及时了解更正的状态。 对由您带来的不便,我们深表歉意。