aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Readers
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2012-08-05 00:02:08 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2012-08-05 00:02:08 -0700
commit437b9ec5a46fe6d5c65e4f4837c8995efed2cf03 (patch)
tree6ba3cdff4da6173120edd81e5372a2db33b59b74 /src/Text/Pandoc/Readers
parent3f913c0cc504e574ffb2b8fd6f0a460fc606b74d (diff)
downloadpandoc-437b9ec5a46fe6d5c65e4f4837c8995efed2cf03.tar.gz
Started making markdown table writer sensitive to options.
So far incomplete.
Diffstat (limited to 'src/Text/Pandoc/Readers')
-rw-r--r--src/Text/Pandoc/Readers/Markdown.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Readers/Markdown.hs b/src/Text/Pandoc/Readers/Markdown.hs
index b4b05920e..795935860 100644
--- a/src/Text/Pandoc/Readers/Markdown.hs
+++ b/src/Text/Pandoc/Readers/Markdown.hs
@@ -47,7 +47,7 @@ import Text.Pandoc.Readers.LaTeX ( rawLaTeXInline, rawLaTeXBlock )
import Text.Pandoc.Readers.HTML ( htmlTag, htmlInBalanced, isInlineTag, isBlockTag,
isTextTag, isCommentTag )
import Text.Pandoc.XML ( fromEntities )
-import Data.Monoid hiding ((<>))
+import Data.Monoid (mconcat, mempty)
import qualified Data.Sequence as Seq -- TODO leaky abstraction, need better isNull in Builder
import Control.Applicative ((<$>), (<*), (*>), (<$))
import Control.Monad