Space doesn't have to be a reserved character anymore.

This commit is contained in:
2025-05-20 12:17:59 -05:00
parent 70761649ad
commit 83dd0024c4

View File

@@ -98,7 +98,7 @@ lookaheadParse stringCmp = do
lineToList :: MdToken -> [MdToken]
lineToList (Line tokens) = tokens
specialChars = "\\#*_[\n "
specialChars = "\\#*_[\n"
-- Makes a parser greedy. Instead of returning all possible parses, only the longest one is returned.
greedyParse :: ReadP a -> ReadP [a]