Muse reader: allow <quote> and other tags to be indented
This commit is contained in:
parent
83ce0a789d
commit
a7ac590b08
2 changed files with 9 additions and 2 deletions
|
@ -153,6 +153,7 @@ htmlElement tag = try $ do
|
|||
|
||||
htmlBlock :: PandocMonad m => String -> MuseParser m (Attr, String)
|
||||
htmlBlock tag = try $ do
|
||||
many spaceChar
|
||||
res <- htmlElement tag
|
||||
manyTill spaceChar eol
|
||||
return res
|
||||
|
@ -166,7 +167,8 @@ htmlAttrToPandoc attrs = (ident, classes, keyvals)
|
|||
|
||||
parseHtmlContent :: PandocMonad m
|
||||
=> String -> MuseParser m (Attr, F Blocks)
|
||||
parseHtmlContent tag = do
|
||||
parseHtmlContent tag = try $ do
|
||||
many spaceChar
|
||||
(TagOpen _ attr, _) <- htmlTag (~== TagOpen tag [])
|
||||
manyTill spaceChar eol
|
||||
content <- parseBlocksTill (manyTill spaceChar endtag)
|
||||
|
@ -398,7 +400,6 @@ dropSpacePrefix lns =
|
|||
|
||||
exampleTag :: PandocMonad m => MuseParser m (F Blocks)
|
||||
exampleTag = try $ do
|
||||
many spaceChar
|
||||
(attr, contents) <- htmlBlock "example"
|
||||
return $ return $ B.codeBlockWith attr $ rchop $ intercalate "\n" $ dropSpacePrefix $ splitOn "\n" $ lchop contents
|
||||
|
||||
|
|
|
@ -328,6 +328,12 @@ tests =
|
|||
, "</quote>"
|
||||
] =?>
|
||||
blockQuote (para "foo" <> blockQuote (para "bar") <> para "baz")
|
||||
, "Indented quote inside list" =:
|
||||
T.unlines [ " - <quote>"
|
||||
, " foo"
|
||||
, " </quote>"
|
||||
] =?>
|
||||
bulletList [ blockQuote (para "foo") ]
|
||||
, "Verse tag" =:
|
||||
T.unlines [ "<verse>"
|
||||
, ""
|
||||
|
|
Loading…
Reference in a new issue