Merge pull request #1565 from Chobbes/master

Org exampleLine parser accepts indented example lines!
This commit is contained in:
John MacFarlane 2014-08-26 22:18:50 -07:00
commit 5a6e0d3a08

View file

@ -483,7 +483,7 @@ exampleCode :: String -> Blocks
exampleCode = B.codeBlockWith ("", ["example"], [])
exampleLine :: OrgParser String
exampleLine = try $ string ": " *> anyLine
exampleLine = try $ skipSpaces *> string ": " *> anyLine
-- Drawers for properties or a logbook
drawer :: OrgParser (F Blocks)