diff options
Diffstat (limited to 'Text')
-rw-r--r-- | Text/Pandoc/Readers/Markdown.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Text/Pandoc/Readers/Markdown.hs b/Text/Pandoc/Readers/Markdown.hs index 2d1fa7583..4460d78b6 100644 --- a/Text/Pandoc/Readers/Markdown.hs +++ b/Text/Pandoc/Readers/Markdown.hs @@ -231,10 +231,10 @@ block = do choice (if stateStrict st then [ header , codeBlock + , blockQuote , hrule , bulletList , orderedList - , blockQuote , htmlBlock , para , plain @@ -242,11 +242,11 @@ block = do else [ header , table , codeBlock + , blockQuote , hrule , bulletList , orderedList , definitionList - , blockQuote , rawLaTeXEnvironment , para , rawHtmlBlocks |