material-design
material-design copied to clipboard
Bullets are not showing
Here is my source:
- bullet
- bullet
- bullet
Here is an image as rendered by the hugo server:
If I indent the above lines, then they do show. In other words, here is indented source:
- bullet
- bullet
- bullet
Here is the result and the bullets are showing:
The generated HTML looks ok:
<ul>
<li>bullet</li>
<li>bullet</li>
<li>bullet</li>
</ul>
So I'm guessing it is a CSS issue??
Note also that ordered lists work fine... so I'll stick to numbers for now instead of bullets.