# Extensions
The following additional list items are supported:
## Ordered list with alpha letter
Allows to use a list using an alpha letter instead of a number
```````````````````````````````` example
a. First item
b. Second item
c. Last item
.
- First item
- Second item
- Last item
````````````````````````````````
It works also for uppercase alpha:
```````````````````````````````` example
A. First item
B. Second item
C. Last item
.
- First item
- Second item
- Last item
````````````````````````````````
Like for numbered list, a list can start with a different letter
```````````````````````````````` example
b. First item
c. Second item
.
- First item
- Second item
````````````````````````````````
A different type of list will break the existing list:
```````````````````````````````` example
a. First item1
b. Second item
A. First item2
.
- First item1
- Second item
- First item2
````````````````````````````````
## Ordered list with roman letter
Allows to use a list using a roman number instead of a number.
```````````````````````````````` example
i. First item
ii. Second item
iii. Third item
iv. Last item
.
- First item
- Second item
- Third item
- Last item
````````````````````````````````
It works also for uppercase alpha:
```````````````````````````````` example
I. First item
II. Second item
III. Third item
IV. Last item
.
- First item
- Second item
- Third item
- Last item
````````````````````````````````
Like for numbered list, a list can start with a different letter
```````````````````````````````` example
ii. First item
iii. Second item
.
- First item
- Second item
````````````````````````````````
Lists can be restarted, specifying the start point.
```````````````````````````````` example
1. First item
Some text
2. Second item
.
- First item
Some text
- Second item
````````````````````````````````