Muse reader: do not parse blocks inside comments (#3828)

This commit is contained in:
Alexander Krotov
2017-08-03 09:11:00 -07:00
committed by John MacFarlane
parent ced834076d
commit 38b6adaac0
+1 -1
View File
@@ -247,7 +247,7 @@ quoteTag :: PandocMonad m => MuseParser m (F Blocks)
quoteTag = blockTag B.blockQuote "quote"
commentTag :: PandocMonad m => MuseParser m (F Blocks)
commentTag = parseHtmlContent "comment" block >> return mempty
commentTag = parseHtmlContent "comment" anyChar >> return mempty
-- Indented block is either center, right or quote
indentedLine :: PandocMonad m => MuseParser m (Int, String)