From 708973a33a0ce425bb21a5ffa06fbdab465d3fb8 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Thu, 25 May 2017 12:50:43 +0200 Subject: 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. --- test/command/2602.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 test/command/2602.md (limited to 'test/command') diff --git a/test/command/2602.md b/test/command/2602.md new file mode 100644 index 000000000..5ed4b581c --- /dev/null +++ b/test/command/2602.md @@ -0,0 +1,18 @@ +``` +% pandoc +[a] [b] + +[b]: url +^D +

[a] b

+``` + +``` +% pandoc -f markdown+spaced_reference_links +[a] [b] + +[b]: url +^D +

a

+``` + -- cgit v1.2.3