diff --git a/src/Text/Pandoc/Readers/Markdown.hs b/src/Text/Pandoc/Readers/Markdown.hs index cc9e9b71fad1..26263d674e20 100644 --- a/src/Text/Pandoc/Readers/Markdown.hs +++ b/src/Text/Pandoc/Readers/Markdown.hs @@ -868,7 +868,10 @@ rawListItem :: PandocMonad m rawListItem start = try $ do start first <- listLineCommon - rest <- many (notFollowedBy listStart >> notFollowedBy blankline >> listLine) + rest <- many (do notFollowedBy listStart + notFollowedBy (() <$ codeBlockFenced) + notFollowedBy blankline + listLine) blanks <- many blankline return $ unlines (first:rest) ++ blanks diff --git a/test/command/3733.md b/test/command/3733.md new file mode 100644 index 000000000000..b8a326938efe --- /dev/null +++ b/test/command/3733.md @@ -0,0 +1,13 @@ +```` +% pandoc -t native +- Item1 +- Item2 +```yaml +some: code +``` +^D +[BulletList + [[Plain [Str "Item1"]] + ,[Plain [Str "Item2"]]] +,CodeBlock ("",["yaml"],[]) "some: code"] +````