Ordered and Unordered Lists

Create bullet and numbered lists

Markdown Source

- Item one
- Item two
* Also works
+ Or plus

1. First
2. Second
3. Third

Rendered HTML Output

<ul><li>Item one</li><li>Item two</li><li>Also works</li><li>Or plus</li></ul>
<ol><li>First</li><li>Second</li><li>Third</li></ol>

Explanation

Unordered: start lines with -, *, or +. Ordered: use 1. 2. 3. (number doesn't matter for output). Add a blank line before lists to avoid merging with preceding paragraphs.

Tips & Common Mistakes

Related Markdown Examples

Try It

Markdown Preview Tool →

All Examples