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:
parent
be68ae7410
commit
99181c71bc
|
@ -57,7 +57,6 @@
|
|||
(alist->hash-table
|
||||
'((#\" . "quot")
|
||||
(#\& . "amp")
|
||||
(#\' . "apos")
|
||||
(#\< . "lt")
|
||||
(#\> . "gt"))))
|
||||
|
||||
|
|
Loading…
Reference in New Issue