aboutsummaryrefslogtreecommitdiff
path: root/Text/Pandoc/Readers/Markdown.hs
diff options
context:
space:
mode:
authorfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2008-02-09 03:18:03 +0000
committerfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2008-02-09 03:18:03 +0000
commit9f7a14c210aed7cabcbd23721ffbcf491d54b085 (patch)
tree455fe57ed9041d6461f92b2e2144f1405fd7a9da /Text/Pandoc/Readers/Markdown.hs
parent6a921f09664d45ce603151f9cd0d14d8c8f550a1 (diff)
downloadpandoc-9f7a14c210aed7cabcbd23721ffbcf491d54b085.tar.gz
Modified readers for new parameter in CodeBlock.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@1199 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'Text/Pandoc/Readers/Markdown.hs')
-rw-r--r--Text/Pandoc/Readers/Markdown.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Text/Pandoc/Readers/Markdown.hs b/Text/Pandoc/Readers/Markdown.hs
index ecf05b18d..8d7a274bf 100644
--- a/Text/Pandoc/Readers/Markdown.hs
+++ b/Text/Pandoc/Readers/Markdown.hs
@@ -301,7 +301,7 @@ codeBlock = do
l <- indentedLine
return $ b ++ l))
optional blanklines
- return $ CodeBlock $ stripTrailingNewlines $ concat contents
+ return $ CodeBlock "" $ stripTrailingNewlines $ concat contents
--
-- block quotes