bulletStyle attribute for   ul and  ol lists. This attribute will set the  list-style-type CSS property for children items in the list.
bulletStyle attribute are:bulletStyle or  bullet attribute are:start attribute. The attribute can be specified as a number or using a value compatible with the bullet style. 
<ol bulletStyle="upper-roman"> <li>First item</li> <li>Second item</li> <ol bulletStyle="lower-alpha"> <li>First item</li> <li>Second item</li> </ol> </ol>Result:
<ol bullet="alpha" start="c"> <li>first element</li> <li>second element</li> </ol>Result:
<ol bullet="roman" start="IV"> <li>first element</li> <li>second element</li> </ol>Result:
docJGenerator Copyright (c) 2016-2023 Herve Girod. All rights reserved.