Skip to content

Commit

Permalink
Fix markdown link (#1508)
Browse files Browse the repository at this point in the history
  • Loading branch information
josefpihrt authored Sep 13, 2024
1 parent 2011c02 commit 1b5ce7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Tools/CodeGeneration/Markdown/MarkdownGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ IEnumerable<object> GetTextParts()
while (match.Success)
{
yield return message.Substring(index, match.Index);
yield return Link(match.Value, $"./{match.Value}");
yield return Link(match.Value, $"/docs/roslynator/analyzers/{match.Value}");
index = match.Index + match.Length;
match = match.NextMatch();
}
Expand Down

0 comments on commit 1b5ce7b

Please sign in to comment.