Hello,
I would like to know how a nested numbered list can be rendered in Aspose word document.
I’m creating the document from an input html builder. The input HTML has a global style which would render the nested numbered list.
Nested numbered list.PNG (2.9 KB)
HTML is rendered using below CSS global styles -
ol {
counter-reset: item;
}
ol li {
display: block
}
ol li:before {
content: counters(item, “.”) ". ";
counter-increment: item;
}
In aspose doc though I am not able to apply global CSS styles in HTML.
Any help would be appreciated. Thanks.