We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eba12df commit 67bde17Copy full SHA for 67bde17
src/Parse.hs
@@ -399,7 +399,7 @@ whitespaceline = try (newline >> return "") <|> try (whitespacechar >> whitespac
399
400
-- a line beginning with optional whitespace and #, or beginning with one or more * (an org node)
401
commentline = try (do
402
- prefix <- many1 (char '*') <|> (whitespace >> many1 (char '#'))
+ prefix <- whitespace >> many1 (char '#')
403
rest <- lineoreof
404
return $ prefix ++ rest
405
) <?> "comments"
0 commit comments