mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-03 06:05:45 +00:00
In GFM, you need to use `\\{` rather than `\{` for a literal brace.
Closes #10631.
9 lines
138 B
Markdown
9 lines
138 B
Markdown
GFM has funny treatment of escaped braces, requiring `\\{` instead of `\{`.
|
|
|
|
```
|
|
% pandoc -f gfm -t markdown
|
|
$\\{x,y\\}$
|
|
^D
|
|
$\{x,y\}$
|
|
```
|