material-design icon indicating copy to clipboard operation
material-design copied to clipboard

Bullets are not showing

Open mandolyte opened this issue 6 years ago • 0 comments

Here is my source:

- bullet
- bullet
- bullet

Here is an image as rendered by the hugo server: image

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: image

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.

mandolyte avatar Apr 13 '18 15:04 mandolyte