summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn MacFarlane <fiddlosopher@gmail.com>2012-09-26 09:06:34 -0700
committerJohn MacFarlane <fiddlosopher@gmail.com>2012-09-26 09:06:34 -0700
commitff84881e8c1c28739232ad068f54b5de828e55d6 (patch)
tree884497ffb09c6c910f04bbf3479a93cfb00fdd73
parentc80ffe9171391f1a15d0c4b069f4b994c1aef050 (diff)
Shared: Count \r as space in removeLeading/TrailingSpace.
-rw-r--r--src/Text/Pandoc/Shared.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Shared.hs b/src/Text/Pandoc/Shared.hs
index d86f9a390..577f5dad0 100644
--- a/src/Text/Pandoc/Shared.hs
+++ b/src/Text/Pandoc/Shared.hs
@@ -163,7 +163,7 @@ removeLeadingTrailingSpace = removeLeadingSpace . removeTrailingSpace
-- | Remove leading space (including newlines) from string.
removeLeadingSpace :: String -> String
-removeLeadingSpace = dropWhile (`elem` " \n\t")
+removeLeadingSpace = dropWhile (`elem` " \r\n\t")
-- | Remove trailing space (including newlines) from string.
removeTrailingSpace :: String -> String