We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9d9bd1 commit 90141f5Copy full SHA for 90141f5
src/markdown/markup.ml
@@ -53,7 +53,7 @@ let subscript i = Join (String "<sub>", Join (i, String "</sub>"))
53
let superscript i = Join (String "<sup>", Join (i, String "</sup>"))
54
55
let code_span s =
56
- if String.contains s '`' then "``" ^ s ^ "``" else "`" ^ s ^ "`"
+ if String.contains s '`' then "`` " ^ s ^ "``" else "`" ^ s ^ "`"
57
58
let link ~href i = Link (href, i)
59
0 commit comments