Not rendering list properly #490

Open
opened 2026-01-29 14:38:02 +00:00 by claunia · 0 comments
Owner

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:

pipeline = new MarkdownPipelineBuilder()
                   .UseAdvancedExtensions()
                   .UseSyntaxHighlighting()
                   .UseListExtras()
                   .UseAutoIdentifiers()
                   .UseTaskLists()
                   .UseAbbreviations()
                   .UseGenericAttributes()
                   .UseBootstrap()
                   .UseSoftlineBreakAsHardlineBreak()
                   .Build();

            if (pipeline != null)
            {
                if (input != null)
                {
                    output = Markdown.ToHtml(input, pipeline);
                }
            }
            return output;

This is my input
image

This is how it shows when parsed
image

This is what it shows inside my inspect element
image

Yet I'm missing the dots that should be in front of this.

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: ```cs pipeline = new MarkdownPipelineBuilder() .UseAdvancedExtensions() .UseSyntaxHighlighting() .UseListExtras() .UseAutoIdentifiers() .UseTaskLists() .UseAbbreviations() .UseGenericAttributes() .UseBootstrap() .UseSoftlineBreakAsHardlineBreak() .Build(); if (pipeline != null) { if (input != null) { output = Markdown.ToHtml(input, pipeline); } } return output; ``` This is my input ![image](https://user-images.githubusercontent.com/13496569/148554533-c4f980f4-ce5f-425d-8661-25d4641f6007.png) This is how it shows when parsed ![image](https://user-images.githubusercontent.com/13496569/148554666-fcf56473-8f06-467b-ac7e-4488efd01b15.png) This is what it shows inside my inspect element ![image](https://user-images.githubusercontent.com/13496569/148554727-22ffdc9f-9df5-4255-8d3e-300c6b4bc5a4.png) Yet I'm missing the dots that should be in front of this.
claunia added the question label 2026-01-29 14:38:02 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/markdig#490