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.
This commit is contained in:
David Thompson
2017-11-01 11:57:28 -04:00
parent be68ae7410
commit 99181c71bc

View File

@@ -57,7 +57,6 @@
(alist->hash-table (alist->hash-table
'((#\" . "quot") '((#\" . "quot")
(#\& . "amp") (#\& . "amp")
(#\' . "apos")
(#\< . "lt") (#\< . "lt")
(#\> . "gt")))) (#\> . "gt"))))