aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Readers
diff options
context:
space:
mode:
authorfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2007-08-28 06:44:47 +0000
committerfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2007-08-28 06:44:47 +0000
commit18b379c1ca575b55edfedbcbf47255b9282f1705 (patch)
tree3633656b6992e29342b42966ec9c47c5d3ab1514 /src/Text/Pandoc/Readers
parentb6ebe75656f82a35cac934729ab0a7a7f313bdde (diff)
downloadpandoc-18b379c1ca575b55edfedbcbf47255b9282f1705.tar.gz
More rearranging in definition of inline.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@932 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'src/Text/Pandoc/Readers')
-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"