From 83dd0024c48305427a0dcd44902766944c214eca Mon Sep 17 00:00:00 2001 From: Rockingcool Date: Tue, 20 May 2025 12:17:59 -0500 Subject: [PATCH] Space doesn't have to be a reserved character anymore. --- src/MdToHTML.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MdToHTML.hs b/src/MdToHTML.hs index 02cb9c0..fff6926 100644 --- a/src/MdToHTML.hs +++ b/src/MdToHTML.hs @@ -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]