diff options
Diffstat (limited to 'src/Text/Pandoc')
-rw-r--r-- | src/Text/Pandoc/Readers/Org/BlockStarts.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Text/Pandoc/Readers/Org/BlockStarts.hs b/src/Text/Pandoc/Readers/Org/BlockStarts.hs index 53a999307..e068f9178 100644 --- a/src/Text/Pandoc/Readers/Org/BlockStarts.hs +++ b/src/Text/Pandoc/Readers/Org/BlockStarts.hs @@ -113,12 +113,12 @@ noteMarker = try $ do <*> many1Till (noneOf "\n\r\t ") (char ']') ] - -- | Succeeds if the parser is at the end of a block. +-- | Succeeds if the parser is at the end of a block. endOfBlock :: OrgParser () endOfBlock = lookAhead . try $ do void blankline <|> anyBlockStart <|> void noteMarker where - -- | Succeeds if there is a new block starting at this position. + -- Succeeds if there is a new block starting at this position. anyBlockStart :: OrgParser () anyBlockStart = try . choice $ [ exampleLineStart |