Lists

Markua supports two types of lists, bulleted lists and numbered lists.

Note that Markua distinguishes between “bulleted” and “numbered” lists, not between “unordered” and “ordered” lists (as is done by HTML and Markdown), since all lists have an order–otherwise they wouldn’t be lists!

Here are some lists:

1. foo
2. bar
3. baz

* foo
* bar
* baz

- foo
- bar
- baz

For the exact rules about lists that Markua is going to support once it’s fully-implemented on Leanpub, see https://spec.commonmark.org/0.29/#lists.