summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Thompson <dthompson@vistahigherlearning.com>2017-11-01 11:57:28 -0400
committerDavid Thompson <dthompson@vistahigherlearning.com>2017-11-01 11:57:28 -0400
commit99181c71bc3ed7cf504374cb5d101e85ffaee1f5 (patch)
treec2bff5b71c62fb6a02c9bbcc68add6ab200147f2
parentbe68ae741054986c3b8ff25cf69f3a08df94cce1 (diff)
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.
-rw-r--r--haunt/html.scm1
1 files changed, 0 insertions, 1 deletions
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"))))