Removed tab chars in Textile reader source.

This commit is contained in:
John MacFarlane 2015-05-28 13:07:52 -07:00
parent 4112fb8358
commit e54c8613e8

View file

@ -606,8 +606,8 @@ langAttr = do
-- | Parses material surrounded by a parser.
surrounded :: Parser [Char] st t -- ^ surrounding parser
-> Parser [Char] st a -- ^ content parser (to be used repeatedly)
-> Parser [Char] st [a]
-> Parser [Char] st a -- ^ content parser (to be used repeatedly)
-> Parser [Char] st [a]
surrounded border =
enclosed (border *> notFollowedBy (oneOf " \t\n\r")) (try border)