File converted = File.createTempFile("aspdf-", ".pdf");
Document doc = new Document("C:\\tmp\\TestFile.docx");
doc.getChildNodes(NodeType.COMMENT, true).clear();
File dotdoc = File.createTempFile("aspdf-", ".doc");
doc.save(dotdoc.getAbsolutePath(), SaveFormat.DOC);
doc = new Document(dotdoc.getAbsolutePath());
doc.save(converted.getAbsolutePath(), saveOptions);
The converted file shows that the numbered/lettered list is spaced incorrectly.