G'day Word document lovers!
I'm using org.docx4j.Docx4J.toHTML() to convert a .docx file to HTML, but have become a tad saddened by how lists in the source .docx file are converted, especially nested lists. They come in as a single "flat" list, with inline styling that attempts to use indentation to reconstruct the nesting (*yuck!*). HTML directly supports nested lists (via nesting of <ol> and/or <ul> tags), and I'm a little surprised that the toHTML method ...