Don't require blank lines after code block. (It's sufficient

to end code block with a nonindented line.)


git-svn-id: https://pandoc.googlecode.com/svn/trunk@975 788f1e2b-df1e-0410-8736-df70ead52e1b
This commit is contained in:
fiddlosopher
2007-08-31 22:21:41 +00:00
parent c206332558
commit f55d62c04a
+1 -1
View File
@@ -269,7 +269,7 @@ codeBlock = try $ do
try (do b <- blanklines
l <- indentedLine
return $ b ++ l))
blanklines
optional blanklines
return $ CodeBlock $ stripTrailingNewlines $ concat contents
--