mirror of
https://github.com/xoofx/markdig.git
synced 2026-02-03 21:36:36 +00:00
Not rendering list properly #493
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @iRowin02 on GitHub (Jan 7, 2022).
I'm trying to create a markdown editor which so far has gone pretty successful,
the only problem I have right now is that whenever I try to make a list.
This list doesn't properly show up. Even though when I check to inspect elements it does show up as a list.
My pipeline is as followed:
This is my input

This is how it shows when parsed

This is what it shows inside my inspect element

Yet I'm missing the dots that should be in front of this.
@xoofx commented on GitHub (Jan 28, 2022):
Not sure to follow, what is the
dotshere? Sounds more like a CSS issue on your side with an incorrect rendering of<li>items.@iRowin02 commented on GitHub (Jan 28, 2022):
After googling a bit more, I found that they're called 'Bullet points'. Though I checked in my CSS if I manipulated the behavior of
<li>classes. But this isn't the case.@xoofx commented on GitHub (Jan 28, 2022):
For sure, the HTML output looks correct from Markdig , so I don't think it is a Markdig issue but definitely a non correct usage of CSS.
@iRowin02 commented on GitHub (Jan 28, 2022):
I'm not really the best at CSS, so I haven't gotten a clue what could be the cause. Or how to check, but thanks for pointing out. I'll see what I can do.
@iRowin02 commented on GitHub (Jan 28, 2022):
Well, I fixed it by overwriting the
<ul>class in the CSS. I can now consider myself a CSS god.