Removed unnecessary 'try' in 'codeBlock'.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@977 788f1e2b-df1e-0410-8736-df70ead52e1b
This commit is contained in:
parent
bdf78fe33f
commit
8d3bec3e4d
1 changed files with 1 additions and 1 deletions
|
@ -266,7 +266,7 @@ hrule = try $ do
|
|||
|
||||
indentedLine = indentSpaces >> manyTill anyChar newline >>= return . (++ "\n")
|
||||
|
||||
codeBlock = try $ do
|
||||
codeBlock = do
|
||||
contents <- many1 (indentedLine <|>
|
||||
try (do b <- blanklines
|
||||
l <- indentedLine
|
||||
|
|
Loading…
Reference in a new issue