We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14406bc commit 5e6fb2dCopy full SHA for 5e6fb2d
src/Markdig.Tests/MiscTests.cs
@@ -386,4 +386,27 @@ Also not a note.</p>
386
";
387
TestParser.TestSpec(input, expected, new MarkdownPipelineBuilder().UseAlertBlocks().Build());
388
}
389
+
390
391
+ [Test]
392
+ public void TestIssue845ListItemBlankLine()
393
+ {
394
+ TestParser.TestSpec("-\n\n foo",@"
395
+<ul>
396
+<li></li>
397
+</ul>
398
+<p>foo</p>");
399
+ TestParser.TestSpec("-\n-\n\n foo",@"
400
401
402
403
404
405
+ TestParser.TestSpec("-\n\n-\n\n foo",@"
406
407
408
409
410
411
+ }
412
0 commit comments