List extras

Enable with .UseListExtras() (included in UseAdvancedExtensions()).

This extension adds support for additional ordered list item types beyond the standard numeric 1. markers.

Alpha lists

Use lowercase or uppercase letters followed by .:

a. First item
b. Second item
c. Third item
  1. First item
  2. Second item
  3. Third item

Uppercase

A. First item
B. Second item
C. Third item
  1. First item
  2. Second item
  3. Third item

Roman numeral lists

Use lowercase or uppercase Roman numerals followed by .:

i. First item
ii. Second item
iii. Third item
iv. Fourth item
  1. First item
  2. Second item
  3. Third item
  4. Fourth item

Uppercase Roman

I. First item
II. Second item
III. Third item
  1. First item
  2. Second item
  3. Third item

HTML output

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