Back to cheat sheet

Bullet list

Start a line with -, * or + to make a bulleted list.

Markdown
- First item
- Second item
  - Nested item
Preview
  • First item
  • Second item
    • Nested item
HTML output
<ul>
<li>First item</li>
<li>Second item
<ul>
<li>Nested item</li>
</ul>
</li>
</ul>

Tip — Indent by two spaces to create a nested list.

Open in converter