[PR #888] Fixes issue #845 #1284

Closed
opened 2026-01-29 14:52:35 +00:00 by claunia · 0 comments
Owner

Original Pull Request: https://github.com/xoofx/markdig/pull/888

State: closed
Merged: Yes


This PR fixes the bug reported in issue #845.
With this fix, in the following case:

var result = Markdown.ToHtml("-\n\n-\n\n  foo");

This result will be produced:

<ul>
<li></li>
<li></li>
</ul>
<p>foo</p>
**Original Pull Request:** https://github.com/xoofx/markdig/pull/888 **State:** closed **Merged:** Yes --- This PR fixes the bug reported in issue #845. With this fix, in the following case: ```csharp var result = Markdown.ToHtml("-\n\n-\n\n foo"); ``` This result will be produced: ``` <ul> <li></li> <li></li> </ul> <p>foo</p> ```
claunia added the pull-request label 2026-01-29 14:52:35 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/markdig#1284