diff options
author | Matthew Pickering <matthewtpickering@gmail.com> | 2015-03-22 23:31:08 +0000 |
---|---|---|
committer | Matthew Pickering <matthewtpickering@gmail.com> | 2015-03-22 23:31:08 +0000 |
commit | 84d6703ea7e9996a3745ccaad96ffe9e7464bf9c (patch) | |
tree | a81a809781145039084fcbc8de67761cfd2d4825 /src | |
parent | 4ce6471c12d779699588deb30344aa2bfe62fd41 (diff) | |
download | pandoc-84d6703ea7e9996a3745ccaad96ffe9e7464bf9c.tar.gz |
Add missing import
Diffstat (limited to 'src')
-rw-r--r-- | src/Text/Pandoc/Readers/Markdown.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Readers/Markdown.hs b/src/Text/Pandoc/Readers/Markdown.hs index e2f2c9268..f01ecc445 100644 --- a/src/Text/Pandoc/Readers/Markdown.hs +++ b/src/Text/Pandoc/Readers/Markdown.hs @@ -55,7 +55,7 @@ import Text.Pandoc.Readers.LaTeX ( rawLaTeXInline, rawLaTeXBlock ) import Text.Pandoc.Readers.HTML ( htmlTag, htmlInBalanced, isInlineTag, isBlockTag, isTextTag, isCommentTag ) import Data.Monoid (mconcat, mempty) -import Control.Applicative ((<$>), (<*), (*>), (<$)) +import Control.Applicative ((<$>), (<*), (*>), (<$), (<*>)) import Control.Monad import Control.Monad.Reader import System.FilePath (takeExtension, addExtension) |