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