diff options
author | John MacFarlane <jgm@berkeley.edu> | 2017-11-13 21:12:04 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-11-13 21:12:04 -0800 |
commit | 8d6e0e516a0b9d36992b2802e23dbcc6162c7346 (patch) | |
tree | a6ba003d8cc8e68443a83a5ba55b3732f3b6d9cf /test/command | |
parent | 3a83b3843db6434e9806558ea1e912055d5baf04 (diff) | |
download | pandoc-8d6e0e516a0b9d36992b2802e23dbcc6162c7346.tar.gz |
Markdown writer: fix bug with doubled footnotes in grid tables.
Closes #4061.
Diffstat (limited to 'test/command')
-rw-r--r-- | test/command/4061.md | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test/command/4061.md b/test/command/4061.md new file mode 100644 index 000000000..e850c5e8c --- /dev/null +++ b/test/command/4061.md @@ -0,0 +1,14 @@ +``` +% pandoc -t markdown-simple_tables-multiline_tables-pipe_tables ++-----------------------------------+ +| Text [^1] | ++-----------------------------------+ + +[^1]: Footnote. +^D ++-----------------------------------+ +| Text [^1] | ++-----------------------------------+ + +[^1]: Footnote. +``` |