aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Readers/Markdown.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Text/Pandoc/Readers/Markdown.hs')
-rw-r--r--src/Text/Pandoc/Readers/Markdown.hs16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/Text/Pandoc/Readers/Markdown.hs b/src/Text/Pandoc/Readers/Markdown.hs
index 4322798ec..600742bee 100644
--- a/src/Text/Pandoc/Readers/Markdown.hs
+++ b/src/Text/Pandoc/Readers/Markdown.hs
@@ -620,23 +620,23 @@ inline = choice [ str
, linebreak
, endline
, whitespace
- , rawLaTeXInline'
- , escapedChar
+ , code
, charRef
+ , strong
+ , emph
, note
, inlineNote
, link
- , referenceLink
- , rawHtmlInline'
- , autoLink
, image
+ , referenceLink
, math
- , strong
- , emph
, strikeout
, superscript
, subscript
- , code
+ , autoLink
+ , rawHtmlInline'
+ , rawLaTeXInline'
+ , escapedChar
, symbol
, ltSign ] <?> "inline"