From 99181c71bc3ed7cf504374cb5d101e85ffaee1f5 Mon Sep 17 00:00:00 2001 From: David Thompson Date: Wed, 1 Nov 2017 11:57:28 -0400 Subject: html: Stop escaping apostrophes. This was breaking the rendering of documents like: '(p (@ (onclick "javascriptFunction('argmunent')"))) The single quotes would be escaped and then the onclick handler wouldn't work at all. * haunt/html.scm (%escape-codes): Remove apostrophe escape code. --- haunt/html.scm | 1 - 1 file changed, 1 deletion(-) diff --git a/haunt/html.scm b/haunt/html.scm index f630a68..5891cd0 100644 --- a/haunt/html.scm +++ b/haunt/html.scm @@ -57,7 +57,6 @@ (alist->hash-table '((#\" . "quot") (#\& . "amp") - (#\' . "apos") (#\< . "lt") (#\> . "gt")))) -- cgit v1.2.3