aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Readers/Markdown.hs
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2011-03-02 11:18:38 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2011-03-02 12:47:17 -0800
commiteebd77829cff9dc5b8003a330907f65d2efc73d5 (patch)
tree7682c12b9f8b474495e818a91367ccf845f5f2b4 /src/Text/Pandoc/Readers/Markdown.hs
parent1ee0640c5275c9ee65e1eb6bdc57346dc24cd22d (diff)
downloadpandoc-eebd77829cff9dc5b8003a330907f65d2efc73d5.tar.gz
Markdown+lhs reader: Require space after inverse bird tracks.
The point of the change is to allow html tags to be used freely at the left margin of a markdown+lhs document. Thanks to Conal Elliot for the suggestion.
Diffstat (limited to 'src/Text/Pandoc/Readers/Markdown.hs')
-rw-r--r--src/Text/Pandoc/Readers/Markdown.hs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Readers/Markdown.hs b/src/Text/Pandoc/Readers/Markdown.hs
index 01cc5e2e8..d284fb25e 100644
--- a/src/Text/Pandoc/Readers/Markdown.hs
+++ b/src/Text/Pandoc/Readers/Markdown.hs
@@ -471,8 +471,10 @@ lhsCodeBlockBirdWith c = try $ do
return $ intercalate "\n" lns'
birdTrackLine :: Char -> GenParser Char st [Char]
-birdTrackLine c = do
+birdTrackLine c = try $ do
char c
+ -- allow html tags on left margin:
+ when (c == '<') $ notFollowedBy letter
manyTill anyChar newline