Skip to content

Commit

Permalink
Update src/Markdig/Parsers/Inlines/LinkInlineParser.cs
Browse files Browse the repository at this point in the history
Co-authored-by: Miha Zupan <[email protected]>
  • Loading branch information
snnz and MihaZupan authored Dec 21, 2024
1 parent 90365bf commit ad0770a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Markdig/Parsers/Inlines/LinkInlineParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -259,8 +259,8 @@ private bool TryProcessLinkOrImage(InlineProcessor inlineState, ref StringSlice
// Inline Link
link = new LinkInline()
{
Url = HtmlHelper.Unescape(url, false),
Title = HtmlHelper.Unescape(title, false),
Url = HtmlHelper.Unescape(url, removeBackSlash: false),
Title = HtmlHelper.Unescape(title, removeBackSlash: false),
IsImage = openParent.IsImage,
LabelSpan = openParent.LabelSpan,
UrlSpan = inlineState.GetSourcePositionFromLocalSpan(linkSpan),
Expand Down

0 comments on commit ad0770a

Please sign in to comment.