diff options
author | Matthew Pickering <matthewtpickering@gmail.com> | 2015-01-30 12:32:12 +0000 |
---|---|---|
committer | Matthew Pickering <matthewtpickering@gmail.com> | 2015-02-18 12:50:21 +0000 |
commit | 2b580600077b615bb66e3bf3b49785a7b8772d09 (patch) | |
tree | df82e8e8a2d6085bde6190e58c3683631bf9557f /src/Text/Pandoc/Readers | |
parent | 9d772068278da6004712dd6b012d78f1b283a543 (diff) | |
download | pandoc-2b580600077b615bb66e3bf3b49785a7b8772d09.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 97a15576b..5cb66bfa7 100644 --- a/src/Text/Pandoc/Readers/Org.hs +++ b/src/Text/Pandoc/Readers/Org.hs @@ -37,8 +37,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) |