diff options
author | John MacFarlane <fiddlosopher@gmail.com> | 2013-03-02 19:02:50 -0800 |
---|---|---|
committer | John MacFarlane <fiddlosopher@gmail.com> | 2013-03-02 19:02:50 -0800 |
commit | 3ad68b2522bcab5d8b3d60eba06b30e1640e8ba7 (patch) | |
tree | 3509e72cfc7b32eea22871643d93f982b2ac3ce4 /src/Text/Pandoc/Readers | |
parent | 1aff783095cad920a42e5c825e8e78896a2d0e17 (diff) | |
download | pandoc-3ad68b2522bcab5d8b3d60eba06b30e1640e8ba7.tar.gz |
Check for tables before line blocks.
Otherwise some pipe tables get treated as line blocks.
Diffstat (limited to 'src/Text/Pandoc/Readers')
-rw-r--r-- | src/Text/Pandoc/Readers/Markdown.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Readers/Markdown.hs b/src/Text/Pandoc/Readers/Markdown.hs index 02d3eacd2..cf75bbf75 100644 --- a/src/Text/Pandoc/Readers/Markdown.hs +++ b/src/Text/Pandoc/Readers/Markdown.hs @@ -365,8 +365,8 @@ block = choice [ codeBlockFenced , lhsCodeBlock , rawTeXBlock , htmlBlock - , lineBlock , table + , lineBlock , codeBlockIndented , blockQuote , hrule |