Files
John MacFarlane 4ab4c62de3 Commonmark Reader: handle GFM math irregularity with braces.
In GFM, you need to use `\\{` rather than `\{` for a literal brace.
Closes #10631.
2025-03-22 10:30:16 -07:00

138 B

GFM has funny treatment of escaped braces, requiring \\{ instead of \{.

% pandoc -f gfm -t markdown
$\\{x,y\\}$
^D
$\{x,y\}$