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 7f604be commit 90bc15cCopy full SHA for 90bc15c
src/Markdig.Tests/TestPlayParser.cs
@@ -50,7 +50,7 @@ public void TestLink()
50
public void TestLinkWithMultipleBackslashesInTitle()
51
{
52
var doc = Markdown.Parse(@"[link](/uri '\\\\127.0.0.1')");
53
- var link = doc.Descendants<ParagraphBlock>().SelectMany(x => x.Inline.Descendants<LinkInline>()).FirstOrDefault();
+ var link = doc.Descendants<LinkInline>().FirstOrDefault();
54
Assert.AreEqual(@"\\127.0.0.1", link?.Title);
55
}
56
0 commit comments