From 51728dd3a172c1174e175e619a0781005bd5cf07 Mon Sep 17 00:00:00 2001 From: Rockingcool Date: Wed, 7 May 2025 14:20:29 -0500 Subject: [PATCH] Added double-quotes to link URL when printing link. --- src/MdToHTML.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MdToHTML.hs b/src/MdToHTML.hs index 0210c58..b65444e 100644 --- a/src/MdToHTML.hs +++ b/src/MdToHTML.hs @@ -53,7 +53,7 @@ instance Show MdToken where show (OrdList tokens) = "ORD" ++ concatMap show tokens show (Code code) = show code show (Codeblock code) = show code - show (Link txt url) = "" ++ show txt ++ "" + show (Link txt url) = "" ++ show txt ++ "" show (Image txt imgPath) = "" ++ show txt ++ "" show (Bold token) = "" ++ show token ++ "" show (Italic token) = "" ++ show token ++ ""