mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-02 05:35:38 +00:00
This affects math with unbalanced brackets (e.g. `$(0,1]$`) inside links, images, bracketed spans. Closes #7623.
13 lines
181 B
Markdown
13 lines
181 B
Markdown
```
|
|
% pandoc -t native
|
|
[link $(0,1]$](url)
|
|
^D
|
|
[ Para
|
|
[ Link
|
|
( "" , [] , [] )
|
|
[ Str "link" , Space , Math InlineMath "(0,1]" ]
|
|
( "url" , "" )
|
|
]
|
|
]
|
|
```
|