pandoc/test/command/7623.md
John MacFarlane 49c4e1d014 Fix markdown parsing bug for math in bracketed spans and links.
This affects math with unbalanced brackets (e.g. `$(0,1]$`)
inside links, images, bracketed spans.

Closes #7623.
2021-10-13 08:59:37 -07:00

12 lines
181 B
Markdown

```
% pandoc -t native
[link $(0,1]$](url)
^D
[ Para
[ Link
( "" , [] , [] )
[ Str "link" , Space , Math InlineMath "(0,1]" ]
( "url" , "" )
]
]
```