Skip to content

Try our new Crash Courses!

Buy one of our new Crash Courses, now hosted on Teachable.

Unordered lists – Markdown

Demo

Summary

Markdown:

* Unordered list first example
* Unordered list first example
* Unordered list first example

- Unordered list second example
- Unordered list second example
- Unordered list second example

Details

In Markdown, you can create unordered lists using asterisks or dashes.

You can also create nested lists by indenting items. You can use an unordered list or ordered list as the nested list.

* Unordered list first example
  * Unordered list first example
  * Unordered list first example
* Unordered list first example

- Unordered list second example
  - Unordered list second example
  - Unordered list second example
- Unordered list second example

* Unordered list third example
  1. Third example
  2. Third example
* Unordered list third example

Click here to see an example of what this code looks like when rendered on GitHub. (Click the Raw button to see the actual Markdown code.)

Exercises

First, recreate the code snippet from the Demo section in your Markdown file. Then try customizing the text.

References

Markdown Reference on CommonMark

Lesson tags: Free Lesson
Back to: Markdown Reference > Markdown Syntax