I have an application in which I'm writing a HTML string to a docx file using XHTMLImporter.
I'm using the convert method from XHTMLImporter and everything works fine, but in the case of a nested list, the nested bullets have the same style (dot) and not the default styles from Word. In the document.xml file, nested paragraphs have the <w:ilvl w:val="X"/> element properly incremented and are indented correctly.
Can I have a tip on how ...