Enable with .UseListExtras() (included in UseAdvancedExtensions()).
This extension adds support for additional ordered list item types beyond the standard numeric 1. markers.
Use lowercase or uppercase letters followed by .:
a. First item
b. Second item
c. Third item
A. First item
B. Second item
C. Third item
Use lowercase or uppercase Roman numerals followed by .:
i. First item
ii. Second item
iii. Third item
iv. Fourth item
I. First item
II. Second item
III. Third item
The type attribute is set on the <ol> element:
<ol type="a">
<li>First item</li>
<li>Second item</li>
</ol>
| Marker | HTML type |
|---|---|
a. |
a |
A. |
A |
i. |
i |
I. |
I |