diff options
author | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2007-08-28 06:44:47 +0000 |
---|---|---|
committer | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2007-08-28 06:44:47 +0000 |
commit | 18b379c1ca575b55edfedbcbf47255b9282f1705 (patch) | |
tree | 3633656b6992e29342b42966ec9c47c5d3ab1514 /src/Text/Pandoc | |
parent | b6ebe75656f82a35cac934729ab0a7a7f313bdde (diff) | |
download | pandoc-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')
-rw-r--r-- | src/Text/Pandoc/Readers/Markdown.hs | 16 |
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" |