pandoc/test/command/2602.md
John MacFarlane 708973a33a Added spaced_reference_links extension.
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.
2017-05-25 12:57:31 +02:00

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>