Retain Numbering of Ordered List with Nested Unordered List during Word DOCX to HTML Conversion C# .NET | ul li:before content: none;

My MS Word document has an ordered list and a nested unordered list. After HTML conversion the unordered list has a bullet AND continues numbering since the CSS style

  • :before which adds the numbering to the ordered list also add continued numbers after the unodered list bullet.
    Is there a way to tell Aspose Conversion to avoid that?

    image.png (3.4 KB)

  • I did remove those numbers now with the following CSS:

    ul li:before {
       content: none;
    }
    

    but would like Aspose conversion to be more precise with li:before. Ideas appreciated!

    @sumoton,

    Have you tried the latest (20.11) version of Aspose.Words for .NET on your end? In case the problem still remains, then please ZIP and upload your input Word document and Aspose.Words generated HTML file showing the undesired behavior here for testing. We will then investigate the issue on our end and provide you more information.