From 421acdf809b1ff408ebcd4dbb29a33483ad39f7f Mon Sep 17 00:00:00 2001 From: Fred Hsu Date: Tue, 31 Oct 2023 12:59:28 -0700 Subject: [PATCH] Fixed output from the render function to not have escaped characters (#80) --- src/03-html/06-escaping_characters.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/03-html/06-escaping_characters.md b/src/03-html/06-escaping_characters.md index b5cf486..7bb3633 100644 --- a/src/03-html/06-escaping_characters.md +++ b/src/03-html/06-escaping_characters.md @@ -177,7 +177,7 @@ ghci> :load Html.hs [1 of 1] Compiling Html ( Html.hs, interpreted ) Ok, one module loaded. ghci> render (html_ "" (p_ "<body>")) -"<html><head><title><title>

<body>

" +"<title>

" ``` As well as import library modules: