@rle
We regret to share with you that there is no update available on this issue at the moment. We suggest you please set the value of HtmlSaveOptions.ExportListLabels
property as ExportListLabels.AsInlineText
to get the correct output. Hope this helps you.
Aspose.Words.LoadOptions loadOptions = new Aspose.Words.LoadOptions();
Aspose.Words.Document document = new Aspose.Words.Document(MyDir + "source.docx", loadOptions);
Aspose.Words.Saving.HtmlSaveOptions saveOptions = new Aspose.Words.Saving.HtmlSaveOptions(SaveFormat.Html);
saveOptions.ExportHeadersFootersMode = ExportHeadersFootersMode.None;
saveOptions.ExportImagesAsBase64 = true;
saveOptions.ExportListLabels = ExportListLabels.AsInlineText;
document.Save(MyDir + @"20.1.html", saveOptions);