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 671663a commit c4148d2Copy full SHA for c4148d2
src/TemplateRefGenerator/Utils/MarkdownUtils.cs
@@ -21,7 +21,8 @@ public static string Escape(string input) => input
21
.Replace("<", "<")
22
.Replace(">", ">")
23
.Replace("\r", "")
24
- .Replace("\n", "<br />");
+ .Replace("\n", "<br />")
25
+ .Replace("|", "\\|");
26
27
public static string ConvertDocsLinks(string input) => input
28
// Remove hostname and /en-us/ prefix so that links under the same domain are relative
0 commit comments