Skip to content

Commit

Permalink
Fix markdown link (#1360)
Browse files Browse the repository at this point in the history
  • Loading branch information
josefpihrt committed Jan 21, 2024
1 parent a22fca9 commit 10ac107
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, $"./{match.Value}");
index = match.Index + match.Length;
match = match.NextMatch();
}
Expand Down

0 comments on commit 10ac107

Please sign in to comment.