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 c35f7ff commit 90365bf
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 @@ -148,8 +148,8 @@ private bool ProcessLinkReference(
// Inline Link
var linkInline = new LinkInline()
{
Url = HtmlHelper.Unescape(linkRef.Url, false),
Title = HtmlHelper.Unescape(linkRef.Title, false),
Url = HtmlHelper.Unescape(linkRef.Url, removeBackSlash: false),
Title = HtmlHelper.Unescape(linkRef.Title, removeBackSlash: false),
Label = label,
LabelSpan = labelSpan,
UrlSpan = linkRef.UrlSpan,
Expand Down

0 comments on commit 90365bf

Please sign in to comment.