mirror of
https://github.com/jgm/pandoc.git
synced 2026-07-13 12:57:24 +00:00
8123be654d
This reverts to earlier < 3.7 behavior. Closes #11384.
243 B
243 B
% pandoc -t markdown -f native
[ Para [ Math DisplayMath "\ne = mc^2\n" ] ]
^D
$$
e = mc^2
$$
But we need to collapse spaces around inline math:
% pandoc -t markdown -f native
[ Para [ Math InlineMath "\ne=mc\n" ]]
^D
$e=mc$