mirror of
https://github.com/jgm/pandoc.git
synced 2026-08-24 09:16:43 +00:00
Removed unneeded 'do' block from 'parseBlocks' definition
in Markdown reader. git-svn-id: https://pandoc.googlecode.com/svn/trunk@352 788f1e2b-df1e-0410-8736-df70ead52e1b
This commit is contained in:
@@ -181,9 +181,7 @@ parseMarkdown = do
|
||||
-- parsing blocks
|
||||
--
|
||||
|
||||
parseBlocks = do
|
||||
result <- manyTill block eof
|
||||
return result
|
||||
parseBlocks = manyTill block eof
|
||||
|
||||
block = choice [ codeBlock, note, referenceKey, header, hrule, list,
|
||||
blockQuote, htmlBlock, rawLaTeXEnvironment', para,
|
||||
|
||||
Reference in New Issue
Block a user