mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-03 06:05:45 +00:00
Previously an Emph inside a Span was being treated as nested markup and ignored. With this patch, the Span is just ignored. Closes #5446.
7 lines
67 B
Markdown
7 lines
67 B
Markdown
```
|
|
% pandoc -f latex -t rst
|
|
{\em test test \/}
|
|
^D
|
|
*test test*
|
|
```
|