Home | Anecdotes | Articles | Icebreakers | Programs | Quotations | ShopDashboard | Log in | Sign up
How to Create Nested Bullets on Medium, Substack, Markdown and HTML
Image created by Bing
One of my articles needed nested bullets. I use Markdown to draft my articles so I had to work out how to create nested bullets in Markdown. My articles are converted to other formats or pasted to other platforms, so I also needed to develop nested bullets in Medium, Substack and HTML.
Substack
Substack has nested bullets built into its editor, but the method takes a bit of finding:
- Type a dash and a space to create a primary bullet.
- Add the first item on the list.
- Type Return/Enter to create the second primary bullet.
- Type Delete/Backspace to remove this primary bullet.
- Type a dash and a space to create a sub-bullet.
- Type the first nested item.
The following is an example of how this process works:
Continue using this process for the other bullets.
Result
Medium
Medium doesn't have nested bullets built into its editor, but there is a fix:
- Type a dash and a space to create a primary bullet.
- Add the first item on the list.
- Press 'Shift' and 'Newline/Enter' together.
- Type a dash and a space.
- Type the first nested item.
In effect, you are typing the following:
- Red
- Orange
- Crimson
- Yellow
- Gold
- Mustard
- Blue
- Navy
- Sky
- Green
- Lime
- Leaf
Result
HTML
HTML has always had the ability to create nested lists. It is done by nesting 'Unordered Lists' inside the primary 'Unordered List':
<ul>
<li>Red</li>
<ul>
<li>Orange</li>
<li>Crimson</li>
</ul>
<li>Yellow</li>
<ul>
<li>Gold</li>
<li>Mustard</li>
</ul>
<li>Blue</li>
<ul>
<li>Navy</li>
<li>Sky</li>
</ul>
<li>Green</li>
<ul>
<li>Lime</li>
<li>Leaf</li>
</ul>
</ul>
Result
Markdown
Like HTML, Markdown has a built-in ability to create a 'Nested List'. It is done by:
- Type a dash and a space to create a primary bullet.
- Add the first item on the list.
- Press 'Shift' and 'Newline/Enter' together.
- Type a dash and a space.
- Type the first nested item.
- Red
- Orange
- Crimson
- Yellow
- Gold
- Mustard
- Blue
- Navy
- Sky
- Green
- Lime
- Leaf
Result
More Writing articles🍯 Leave a tip