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