aboutsummaryrefslogtreecommitdiff
path: root/Text/Pandoc
diff options
context:
space:
mode:
Diffstat (limited to 'Text/Pandoc')
-rw-r--r--Text/Pandoc/Readers/Markdown.hs28
1 files changed, 27 insertions, 1 deletions
diff --git a/Text/Pandoc/Readers/Markdown.hs b/Text/Pandoc/Readers/Markdown.hs
index 8d7a274bf..e58a80b99 100644
--- a/Text/Pandoc/Readers/Markdown.hs
+++ b/Text/Pandoc/Readers/Markdown.hs
@@ -295,7 +295,33 @@ hrule = try $ do
indentedLine = indentSpaces >> manyTill anyChar newline >>= return . (++ "\n")
-codeBlock = do
+codeBlock = codeBlockIndented <|> codeBlockDelimited
+
+codeBlockDelimiter len = try $ do
+ size <- case len of
+ Just l -> count l (char '~') >> return l
+ Nothing -> count 3 (char '~') >> many (char '~') >>=
+ return . (+ 3) . length
+ many spaceChar
+ lang <- option "" classAttribute
+ blankline
+ return (size, lang)
+
+classAttribute = try $ do
+ char '{'
+ many spaceChar
+ char '.'
+ attr <- many1 alphaNum
+ many spaceChar
+ char '}'
+ return attr
+
+codeBlockDelimited = try $ do
+ (size, lang) <- codeBlockDelimiter Nothing
+ contents <- manyTill anyLine (codeBlockDelimiter (Just size))
+ return $ CodeBlock lang $ concat contents
+
+codeBlockIndented = do
contents <- many1 (indentedLine <|>
try (do b <- blanklines
l <- indentedLine