diff --git a/gen/markdown/markdown.jule b/gen/markdown/markdown.jule index 2f20e46..d720628 100644 --- a/gen/markdown/markdown.jule +++ b/gen/markdown/markdown.jule @@ -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.