diff options
author | Albert Krewinkel <albert@zeitkraut.de> | 2017-01-06 17:52:09 +0100 |
---|---|---|
committer | Albert Krewinkel <albert@zeitkraut.de> | 2017-01-06 18:22:19 +0100 |
commit | 4ca420e937471c568e6d14e8017e184d0959ae09 (patch) | |
tree | 56669a4801f7edc8745a6d5db903056aa108d472 /tests/Tests/Readers | |
parent | 21e6ca197694a8f65bd2717dc441ea99f3f20312 (diff) | |
download | pandoc-4ca420e937471c568e6d14e8017e184d0959ae09.tar.gz |
Org reader: accept org-ref citations followed by commas
Bugfix for an issue which, whenever the citation was immediately followed by a
comma, prevented correct parsing of org-ref citations.
Diffstat (limited to 'tests/Tests/Readers')
-rw-r--r-- | tests/Tests/Readers/Org.hs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/Tests/Readers/Org.hs b/tests/Tests/Readers/Org.hs index 4462d81cc..0518f6932 100644 --- a/tests/Tests/Readers/Org.hs +++ b/tests/Tests/Readers/Org.hs @@ -334,6 +334,18 @@ tests = } in (para $ cite [citation] "cite:pandoc") + , "Org-ref simple citation succeeded by comma" =: + "cite:pandoc," =?> + let citation = Citation + { citationId = "pandoc" + , citationPrefix = mempty + , citationSuffix = mempty + , citationMode = AuthorInText + , citationNoteNum = 0 + , citationHash = 0 + } + in (para $ cite [citation] "cite:pandoc" <> str ",") + , "Org-ref simple citep citation" =: "citep:pandoc" =?> let citation = Citation |