mirror of
https://github.com/jgm/pandoc.git
synced 2026-07-10 11:27:06 +00:00
708973a33a
This is now the default for pandoc's Markdown.
It allows whitespace between the two parts of a
reference link: e.g.
[a] [b]
[b]: url
This is now forbidden by default.
Closes #2602.
171 B
171 B
% pandoc
[a] [b]
[b]: url
^D
<p>[a] <a href="url">b</a></p>
% pandoc -f markdown+spaced_reference_links
[a] [b]
[b]: url
^D
<p><a href="url">a</a></p>