diff options
author | John MacFarlane <fiddlosopher@gmail.com> | 2012-10-21 23:16:23 -0700 |
---|---|---|
committer | John MacFarlane <fiddlosopher@gmail.com> | 2012-10-21 23:16:23 -0700 |
commit | cfab8eaecb77f8c3a50bc7725d2cb4f2f3eca225 (patch) | |
tree | 99ee8ca4a6c5384a10a665bff4aaab90e684721f /tests/Tests | |
parent | bfddcb46dc2eda4e2c51457816824fe30fd39549 (diff) | |
download | pandoc-cfab8eaecb77f8c3a50bc7725d2cb4f2f3eca225.tar.gz |
Revert "LaTeX reader: Use new suppressParens option for footnote citations."
This reverts commit 7499499b68934ae6f3418940328c7fc2bd9fcadd.
Conflicts:
src/Text/Pandoc/Readers/LaTeX.hs
Diffstat (limited to 'tests/Tests')
-rw-r--r-- | tests/Tests/Readers/LaTeX.hs | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/tests/Tests/Readers/LaTeX.hs b/tests/Tests/Readers/LaTeX.hs index ade998388..febc91765 100644 --- a/tests/Tests/Readers/LaTeX.hs +++ b/tests/Tests/Readers/LaTeX.hs @@ -62,13 +62,12 @@ tests = [ testGroup "basic" ] baseCitation :: Citation -baseCitation = Citation{ citationId = "item1" - , citationPrefix = [] - , citationSuffix = [] - , citationMode = AuthorInText - , citationNoteNum = 0 - , citationSuppressParens = False - , citationHash = 0 } +baseCitation = Citation{ citationId = "item1" + , citationPrefix = [] + , citationSuffix = [] + , citationMode = AuthorInText + , citationNoteNum = 0 + , citationHash = 0 } rt :: String -> Inlines rt = rawInline "latex" |