The Dead Simple Markdown Guide to Lists

Lists

You can organize items into ordered and unordered lists.

Ordered Lists

To create an ordered list, add line items with numbers followed by periods. The numbers don’t have to be in numerical order, but the list should start with the number one.

| Markdown | HTML | Rendered Output |
|—-|—-|—-|
| 1. First item n 2. Second item n 3. Third item n 4. Fourth item | <ol> n &nbsp;&nbsp;<li>First item</li> n &nbsp;&nbsp;<li>Second item</li> n &nbsp;&nbsp;<li>Third item</li> n &nbsp;&nbsp;<li>Fourth item</li> n </ol> | First itemSecond itemThird itemFourth item |
| 1. First item n 1. Second item n 1. Third item n 1. Fourth item | <ol> n &nbsp;&nbsp;<li>First item</li> n &nbsp;&nbsp;<li>Second item</li> n &nbsp;&nbsp;<li>Third item</li> n &nbsp;&nbsp;<li>Fourth item</li> n </ol> | First itemSecond itemThird itemFourth item |
| 1. First item n 8. Second item n 3. Third item n 5. Fourth item | <ol> n &nbsp;&nbsp;<li>First item</li> n &nbsp;&nbsp;<li>Second item</li> n &nbsp;&nbsp;<li>Third item</li> n &nbsp;&nbsp;<li>Fourth item</li> n </ol> | First itemSecond itemThird itemFourth item |
| 1. First item n 2. Second item n 3. Third item n &nbsp;&nbsp;&nbsp;&nbsp;1. Indented item n &nbsp;&nbsp;&nbsp;&nbsp;2. Indented item n 4. Fourth item | <ol> n &nbsp;&nbsp;<li>First item</li> n &nbsp;&nbsp;<li>Second item</li> n &nbsp;&nbsp;<li>Third item n &nbsp;&nbsp;&nbsp;&nbsp;<ol> n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<li>Indented item</li> n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<li>Indented item</li> n &nbsp;&nbsp;&nbsp;&nbsp;</ol> n &nbsp;&nbsp;</li> n &nbsp;&nbsp;<li>Fourth item</li> n </ol> | First itemSecond itemThird itemIndented itemIndented itemFourth item |

Ordered List Best Practices

CommonMark and a few other lightweight markup languages let you use a parenthesis ()) as a delimiter (e.g., 1) First item), but not all Markdown applications support this, so it isn’t a great option from a compatibility perspective. For compatibility, use periods only.

| ✅  Do this | ❌  Don’t do this |
|—-|—-|
| 1. First item n 2. Second item | 1) First item n 2) Second item |

Unordered Lists

To create an unordered list, add dashes (-), asterisks (*), or plus signs (+) in front of line items. Indent one or more items to create a nested list.

| Markdown | HTML | Rendered Output |
|—-|—-|—-|
| – First item n – Second item n – Third item n – Fourth item | <ul> n &nbsp;&nbsp;<li>First item</li> n &nbsp;&nbsp;<li>Second item</li> n &nbsp;&nbsp;<li>Third item</li> n &nbsp;&nbsp;<li>Fourth item</li> n </ul> | First itemSecond itemThird itemFourth item |
| * First item n * Second item n * Third item n * Fourth item | <ul> n &nbsp;&nbsp;<li>First item</li> n &nbsp;&nbsp;<li>Second item</li> n &nbsp;&nbsp;<li>Third item</li> n &nbsp;&nbsp;<li>Fourth item</li> n </ul> | First itemSecond itemThird itemFourth item |
| + First item n + Second item n + Third item n + Fourth item | <ul> n &nbsp;&nbsp;<li>First item</li> n &nbsp;&nbsp;<li>Second item</li> n &nbsp;&nbsp;<li>Third item</li> n &nbsp;&nbsp;<li>Fourth item</li> n </ul> | First itemSecond itemThird itemFourth item |
| – First item n – Second item n – Third item n &nbsp;&nbsp;&nbsp;&nbsp;- Indented item n &nbsp;&nbsp;&nbsp;&nbsp;- Indented item n – Fourth item | <ul> n &nbsp;&nbsp;<li>First item</li> n &nbsp;&nbsp;<li>Second item</li> n &nbsp;&nbsp;<li>Third item n &nbsp;&nbsp;&nbsp;&nbsp;<ul> n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<li>Indented item</li> n &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<li>Indented item</li> n &nbsp;&nbsp;&nbsp;&nbsp;</ul> n &nbsp;&nbsp;</li> n &nbsp;&nbsp;<li>Fourth item</li> n </ul> | First itemSecond itemThird itemIndented itemIndented itemFourth item |

Starting Unordered List Items With Numbers

If you need to start an unordered list item with a number followed by a period, you can use a backslash () to escape the period.

| Markdown | HTML | Rendered Output |
|—-|—-|—-|
| – 1968. A great year! n – I think 1969 was second best. | <ul> n &nbsp;&nbsp;<li>1968. A great year!</li> n &nbsp;&nbsp;<li>I think 1969 was second best.</li> n </ul> | 1968. A great year!I think 1969 was second best. |

Unordered List Best Practices

Markdown applications don’t agree on how to handle different delimiters in the same list. For compatibility, don’t mix and match delimiters in the same list — pick one and stick with it.

| ✅  Do this | ❌  Don’t do this |
|—-|—-|
| – First item n – Second item n – Third item n – Fourth item | + First item n * Second item n – Third item n + Fourth item |

Adding Elements in Lists

To add another element in a list while preserving the continuity of the list, indent the element four spaces or one tab, as shown in the following examples.

:::tip
Tip: If things don’t appear the way you expect, double check that you’ve indented the elements in the list four spaces or one tab.

:::

Paragraphs

This is the first list item.

Here’s the second list item.


I need to add another paragraph below the second list item.

And here’s the third list item.

The rendered output looks like this:

This is the first list item.

Here’s the second list item.

I need to add another paragraph below the second list item.

And here’s the third list item.

Blockquotes

This is the first list item.

Here’s the second list item.

> A blockquote would look great below the second list item.

And here’s the third list item.

The rendered output looks like this:

This is the first list item.

Here’s the second list item.

A blockquote would look great below the second list item.

And here’s the third list item.

Code Blocks

Code blocks are normally indented four spaces or one tab. When they’re in a list, indent them eight spaces or two tabs.

Open the file.

Find the following code block on line 21:

<html>
<head>
<title>Test</title>
</head>

Update the title to match the name of your website.


The rendered output looks like this:

Open the file.

Find the following code block on line 21:

<html>
<head>
<title>Test</title>
</head>

Update the title to match the name of your website.

Images

Open the file containing the Linux mascot.
Marvel at its beauty.

![Tux, the Linux mascot](/assets/images/tux.png

Close the file.


The rendered output looks like this:

Open the file containing the Linux mascot.

Marvel at its beauty.

Close the file.

Lists

You can nest an unordered list in an ordered list, or vice versa.

First item

Second item

Third item

Indented item

Indented item

Fourth item


The rendered output looks like this:

First item

Second item

Third item

Indented item

Indented item

Fourth item

:::info
This guide is a Matt Cone project available on Markdown Guide under the CC BY-SA 4.0 license.

:::

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.