summaryrefslogtreecommitdiff
path: root/src/Text/ParserCombinators
diff options
context:
space:
mode:
authorfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2007-03-17 20:23:47 +0000
committerfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2007-03-17 20:23:47 +0000
commit571c3b41737f3a331706833adeb8241d93cef10c (patch)
tree58d6690630f686c7ae7b042175561045e7aced7e /src/Text/ParserCombinators
parent9b3d5d88c2cb4b9779ada57abf2d28b71aad4bea (diff)
Removed Blank block element as unnecessary.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@578 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'src/Text/ParserCombinators')
-rw-r--r--src/Text/ParserCombinators/Pandoc.hs7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/Text/ParserCombinators/Pandoc.hs b/src/Text/ParserCombinators/Pandoc.hs
index ced0cb7ca..5b1742975 100644
--- a/src/Text/ParserCombinators/Pandoc.hs
+++ b/src/Text/ParserCombinators/Pandoc.hs
@@ -38,7 +38,6 @@ module Text.ParserCombinators.Pandoc (
blanklines,
escaped,
enclosed,
- blankBlock,
nullBlock,
stringAnyCase,
parseFromStr
@@ -59,12 +58,6 @@ nullBlock = do
anyChar
return Null
--- | Parses one or more blank lines; returns 'Blank'.
-blankBlock :: GenParser Char st Block
-blankBlock = do
- blanklines
- return Blank
-
-- | Parses a space or tab.
spaceChar :: CharParser st Char
spaceChar = oneOf " \t"