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:
@@ -57,7 +57,6 @@
|
||||
(alist->hash-table
|
||||
'((#\" . "quot")
|
||||
(#\& . "amp")
|
||||
(#\' . "apos")
|
||||
(#\< . "lt")
|
||||
(#\> . "gt"))))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user