aboutsummaryrefslogtreecommitdiff
path: root/test/Tests
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2018-01-14 12:23:16 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2018-01-14 12:24:21 -0800
commitd9584d73f94501787026c57b77d217e51f21505d (patch)
tree4ca0544a859f26486ae33d3655dbe9109650bfbc /test/Tests
parentcd80b8d76f4a09eee12dab856a1530d549c062ac (diff)
downloadpandoc-d9584d73f94501787026c57b77d217e51f21505d.tar.gz
Markdown reader: Improved inlinesInBalancedBrackets.
The change both improves performance and fixes a regression whereby normal citations inside inline notes were not parsed correctly. Closes jgm/pandoc-citeproc#315.
Diffstat (limited to 'test/Tests')
-rw-r--r--test/Tests/Readers/Markdown.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Tests/Readers/Markdown.hs b/test/Tests/Readers/Markdown.hs
index c331eb3e9..1cd32b87d 100644
--- a/test/Tests/Readers/Markdown.hs
+++ b/test/Tests/Readers/Markdown.hs
@@ -200,7 +200,7 @@ tests = [ testGroup "inline code"
":smile: and :+1:" =?> para (text "😄 and 👍")
]
, "unbalanced brackets" =:
- "[[[[[[[[[[[hi" =?> para (text "[[[[[[[[[[[hi")
+ "[[[[[[[[[[[[hi" =?> para (text "[[[[[[[[[[[[hi")
, testGroup "backslash escapes"
[ "in URL" =:
"[hi](/there\\))"