diff options
| author | Alexander Krotov <ilabdsf@gmail.com> | 2017-09-11 12:13:09 +0300 | 
|---|---|---|
| committer | Alexander Krotov <ilabdsf@gmail.com> | 2017-09-11 12:13:09 +0300 | 
| commit | 27cccfac849d644e1f722314cefa1ae212227d18 (patch) | |
| tree | 2b3657b4f97f97589d1eaad8b120d52c175408c0 /src/Text | |
| parent | 41a16a1e9dbfd62d430fb7c5a75b8c3e207d383f (diff) | |
| download | pandoc-27cccfac849d644e1f722314cefa1ae212227d18.tar.gz | |
Muse reader: parse verbatim tag
Diffstat (limited to 'src/Text')
| -rw-r--r-- | src/Text/Pandoc/Readers/Muse.hs | 7 | 
1 files changed, 6 insertions, 1 deletions
| diff --git a/src/Text/Pandoc/Readers/Muse.hs b/src/Text/Pandoc/Readers/Muse.hs index f70085c54..ab9a51bad 100644 --- a/src/Text/Pandoc/Readers/Muse.hs +++ b/src/Text/Pandoc/Readers/Muse.hs @@ -39,7 +39,6 @@ TODO:  - Anchors  - Citations and <biblio>  - <play> environment -- <verbatim> tag  -}  module Text.Pandoc.Readers.Muse (readMuse) where @@ -537,6 +536,7 @@ inline = choice [ br                  , superscriptTag                  , subscriptTag                  , strikeoutTag +                , verbatimTag                  , link                  , code                  , codeTag @@ -613,6 +613,11 @@ subscriptTag = inlineTag B.subscript "sub"  strikeoutTag :: PandocMonad m => MuseParser m (F Inlines)  strikeoutTag = inlineTag B.strikeout "del" +verbatimTag :: PandocMonad m => MuseParser m (F Inlines) +verbatimTag = do +  content <- parseHtmlContent "verbatim" anyChar +  return $ return $ B.text $ fromEntities content +  code :: PandocMonad m => MuseParser m (F Inlines)  code = try $ do    pos <- getPosition | 
