aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Text/Pandoc/Parsing.hs2
-rw-r--r--tests/testsuite.txt2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/Text/Pandoc/Parsing.hs b/src/Text/Pandoc/Parsing.hs
index d63fcd0a7..104b75343 100644
--- a/src/Text/Pandoc/Parsing.hs
+++ b/src/Text/Pandoc/Parsing.hs
@@ -755,7 +755,7 @@ doubleQuoteEnd :: GenParser Char st ()
doubleQuoteEnd = oneOf "\"\8221" >> return ()
ellipses :: GenParser Char st Inline
-ellipses = oneOfStrings ["...", " . . . ", ". . .", " . . ."] >> return Ellipses
+ellipses = try $ string "..." >> return Ellipses
dash :: GenParser Char st Inline
dash = enDash <|> emDash
diff --git a/tests/testsuite.txt b/tests/testsuite.txt
index 7f6e89449..a8730878a 100644
--- a/tests/testsuite.txt
+++ b/tests/testsuite.txt
@@ -496,7 +496,7 @@ Some dashes: one---two --- three--four -- five.
Dashes between numbers: 5-7, 255-66, 1987-1999.
-Ellipses...and. . .and . . . .
+Ellipses...and...and....
-----