Skip to content

Commit

Permalink
juledoc: fix markdown special cases handling
Browse files Browse the repository at this point in the history
  • Loading branch information
mertcandav committed Jan 17, 2025
1 parent c54e14e commit cbcd362
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 @@ -20,7 +20,11 @@ static markdownEscaper = strings::Replacer.New(
`"`, """,
"`", "\\`",
"[", "\\[",
"]", "\\]")
"]", "\\]",
"{", "\\{",
"}", "\\}",
"_", "\\_",
"*", "\\*")

// Generates Markdown documentation from documentation data.
struct gen {
Expand Down

0 comments on commit cbcd362

Please sign in to comment.