diff options
Diffstat (limited to 'src/Text/Pandoc/Readers')
-rw-r--r-- | src/Text/Pandoc/Readers/Markdown.hs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/Text/Pandoc/Readers/Markdown.hs b/src/Text/Pandoc/Readers/Markdown.hs index 82a1d6bb4..457f334b4 100644 --- a/src/Text/Pandoc/Readers/Markdown.hs +++ b/src/Text/Pandoc/Readers/Markdown.hs @@ -772,9 +772,8 @@ endline = try $ do notFollowedBy blankline st <- getState if stateStrict st - then do - notFollowedBy emailBlockQuoteStart - notFollowedBy (char '#') -- atx header + then do notFollowedBy emailBlockQuoteStart + notFollowedBy (char '#') -- atx header else return () -- parse potential list-starts differently if in a list: if stateParserContext st == ListItemState |