diff options
author | Matthew Pickering <matthewtpickering@gmail.com> | 2015-01-30 12:32:12 +0000 |
---|---|---|
committer | Matthew Pickering <matthewtpickering@gmail.com> | 2015-03-22 20:11:30 +0000 |
commit | de093b4e6ee7fa135f8551699bc2674571ba4dda (patch) | |
tree | fd3ee3b064d5582c8a45a4966d2fa181ce19e55e /src/Text/Pandoc/Readers | |
parent | 5dc902cbcca92326126ef3647a3cebf2ae3071a5 (diff) | |
download | pandoc-de093b4e6ee7fa135f8551699bc2674571ba4dda.tar.gz |
Remove F monad from Parsing
Diffstat (limited to 'src/Text/Pandoc/Readers')
-rw-r--r-- | src/Text/Pandoc/Readers/Org.hs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Text/Pandoc/Readers/Org.hs b/src/Text/Pandoc/Readers/Org.hs index 2aed84dca..b21d2cc11 100644 --- a/src/Text/Pandoc/Readers/Org.hs +++ b/src/Text/Pandoc/Readers/Org.hs @@ -39,8 +39,7 @@ import Text.Pandoc.Builder ( Inlines, Blocks, HasMeta(..), (<>) import Text.Pandoc.Definition import Text.Pandoc.Options import qualified Text.Pandoc.Parsing as P -import Text.Pandoc.Parsing hiding ( F, unF, askF, asksF, runF - , newline, orderedListMarker +import Text.Pandoc.Parsing hiding ( newline, orderedListMarker , parseFromString, blanklines ) import Text.Pandoc.Readers.LaTeX (inlineCommand, rawLaTeXInline) |