From ace3b80f1eba86d4819bb21643271b6152d9f59b Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Tue, 7 Dec 2010 20:08:14 -0800 Subject: Smart punctuation: don't alllow ellipses containing spaces. Previously we allowed '. . .', ' . . . ', etc. This caused too many complications, and removed author's flexibility in combining ellipses with spaces and periods. --- src/Text/Pandoc/Parsing.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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 -- cgit v1.2.3