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 ++ ""