Skip to content

Commit

Permalink
juledoc: extend markdown special cases
Browse files Browse the repository at this point in the history
  • Loading branch information
mertcandav committed Jan 19, 2025
1 parent ca8a51f commit 5ab6a32
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion gen/markdown/markdown.jule
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,12 @@ static markdownEscaper = strings::Replacer.New(
"{", "\\{",
"}", "\\}",
"_", "\\_",
"-", "\\-",
"*", "\\*",
"\\", "\\\\")
"+", "\\+",
"\\", "\\\\",
"~", "\\~",
"@", "\\@")

// Replaces special characters for identifiers.
// If a name will used for a hyperlink in the page, this replacer should be used.
Expand Down

0 comments on commit 5ab6a32

Please sign in to comment.