diff options
author | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2007-04-15 16:22:29 +0000 |
---|---|---|
committer | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2007-04-15 16:22:29 +0000 |
commit | ffd7248af80280fb05c57e86cb2349a9060f3c81 (patch) | |
tree | 73239252fd70931999be5e261eb23eee3a0f2e5c /src/Text/ParserCombinators/Pandoc.hs | |
parent | e15fd3bf86f91d6c14bf9ba2e2aa7057dc51d72b (diff) | |
download | pandoc-ffd7248af80280fb05c57e86cb2349a9060f3c81.tar.gz |
Fixed export declarations; removed unneeded import of
Pandoc.Shared.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@585 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'src/Text/ParserCombinators/Pandoc.hs')
-rw-r--r-- | src/Text/ParserCombinators/Pandoc.hs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/Text/ParserCombinators/Pandoc.hs b/src/Text/ParserCombinators/Pandoc.hs index f418e0e75..cbccdcf1c 100644 --- a/src/Text/ParserCombinators/Pandoc.hs +++ b/src/Text/ParserCombinators/Pandoc.hs @@ -36,15 +36,12 @@ module Text.ParserCombinators.Pandoc ( skipSpaces, blankline, blanklines, - escaped, enclosed, - nullBlock, stringAnyCase, parseFromStr, lineClump ) where import Text.ParserCombinators.Parsec -import Text.Pandoc.Shared import Data.Char ( toUpper, toLower ) --- | Parse any line of text |