diff options
Diffstat (limited to 'test/command')
-rw-r--r-- | test/command/3615.md | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/test/command/3615.md b/test/command/3615.md new file mode 100644 index 000000000..5fbd48b3a --- /dev/null +++ b/test/command/3615.md @@ -0,0 +1,18 @@ +``` +% pandoc -f html -t markdown --reference-links +<a href="a">foo</a> <a href="b">Foo</a> +^D +[foo][] [Foo][1] + + [foo]: a + [1]: b +``` + +``` +% pandoc -f html -t markdown --reference-links +<a href="a">foo</a> <a href="a">Foo</a> +^D +[foo][] [Foo] + + [foo]: a +``` |