summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlexander Krotov <ilabdsf@gmail.com>2017-11-21 18:29:29 +0300
committerAlexander Krotov <ilabdsf@gmail.com>2017-11-21 19:01:53 +0300
commit91d67334263058fa884793cb71d5ba9e7fcc4eb3 (patch)
tree6b583994827533b8d713cccc024c5c8329057e7a /src
parent1b970cca13ec6f5ace72dedd1df81fdaf1b9ad8b (diff)
Muse reader: <literal> has "style" attribute, not "format"
Diffstat (limited to 'src')
-rw-r--r--src/Text/Pandoc/Readers/Muse.hs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Readers/Muse.hs b/src/Text/Pandoc/Readers/Muse.hs
index d54019777..89b23f5a3 100644
--- a/src/Text/Pandoc/Readers/Muse.hs
+++ b/src/Text/Pandoc/Readers/Muse.hs
@@ -243,7 +243,8 @@ exampleTag = do
literal :: PandocMonad m => MuseParser m (F Blocks)
literal = (return . rawBlock) <$> htmlElement "literal"
where
- format (_, _, kvs) = fromMaybe "html" $ lookup "format" kvs
+ -- FIXME: Emacs Muse inserts <literal> without style into all output formats, but we assume HTML
+ format (_, _, kvs) = fromMaybe "html" $ lookup "style" kvs
rawBlock (attrs, content) = B.rawBlock (format attrs) content
blockTag :: PandocMonad m