diff options
author | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2008-01-06 19:46:24 +0000 |
---|---|---|
committer | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2008-01-06 19:46:24 +0000 |
commit | 0e94609e188ea48da435d9da21498b4e77418da4 (patch) | |
tree | 3915acf6846a38b5e72d0cf30884342bb4be82d5 /Text/Pandoc/Readers | |
parent | 0b3ffbf3396dafa583d61003e73820a603516e7f (diff) | |
download | pandoc-0e94609e188ea48da435d9da21498b4e77418da4.tar.gz |
Markdown reader: Moved blockQuote parser before list parsers.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@1171 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'Text/Pandoc/Readers')
-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 |