From 41b35be7c9c8b699f9d4836aceed7c0b007d779c Mon Sep 17 00:00:00 2001 From: Aadhavan Srinivasan Date: Tue, 20 May 2025 16:43:35 -0400 Subject: [PATCH] Rename function --- src/MdToHTML.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MdToHTML.hs b/src/MdToHTML.hs index 0e86001..77ea2b1 100644 --- a/src/MdToHTML.hs +++ b/src/MdToHTML.hs @@ -147,7 +147,7 @@ parseBold = parseBoldWith "**" <|> parseBoldWith "__" -- Parse italic text parseItalic :: ReadP MdToken -parseItalic = parseBoldWith "*" <|> parseBoldWith "_" +parseItalic = parseItalicWith "*" <|> parseItalicWith "_" where parseBoldWith delim = do string delim