aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Text/Pandoc/Readers/Markdown.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Text/Pandoc/Readers/Markdown.hs b/src/Text/Pandoc/Readers/Markdown.hs
index b51375cce..b4b05920e 100644
--- a/src/Text/Pandoc/Readers/Markdown.hs
+++ b/src/Text/Pandoc/Readers/Markdown.hs
@@ -277,6 +277,8 @@ block :: Parser [Char] ParserState (F Blocks)
block = choice [ codeBlockDelimited
, guardEnabled Ext_latex_macros *> (mempty <$ macro)
, header
+ , rawTeXBlock
+ , htmlBlock
, table
, codeBlockIndented
, lhsCodeBlock
@@ -285,8 +287,6 @@ block = choice [ codeBlockDelimited
, bulletList
, orderedList
, definitionList
- , rawTeXBlock
- , htmlBlock
, noteBlock
, referenceKey
, para