49c4e1d014
This affects math with unbalanced brackets (e.g. `$(0,1]$`) inside links, images, bracketed spans. Closes #7623.
12 lines
181 B
Markdown
12 lines
181 B
Markdown
```
|
|
% pandoc -t native
|
|
[link $(0,1]$](url)
|
|
^D
|
|
[ Para
|
|
[ Link
|
|
( "" , [] , [] )
|
|
[ Str "link" , Space , Math InlineMath "(0,1]" ]
|
|
( "url" , "" )
|
|
]
|
|
]
|
|
```
|