diff options
author | David Thompson <dthompson@vistahigherlearning.com> | 2017-11-01 11:57:28 -0400 |
---|---|---|
committer | David Thompson <dthompson@vistahigherlearning.com> | 2017-11-01 11:57:28 -0400 |
commit | 99181c71bc3ed7cf504374cb5d101e85ffaee1f5 (patch) | |
tree | c2bff5b71c62fb6a02c9bbcc68add6ab200147f2 | |
parent | be68ae741054986c3b8ff25cf69f3a08df94cce1 (diff) |
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.
-rw-r--r-- | haunt/html.scm | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/haunt/html.scm b/haunt/html.scm index f630a68..5891cd0 100644 --- a/haunt/html.scm +++ b/haunt/html.scm @@ -57,7 +57,6 @@ (alist->hash-table '((#\" . "quot") (#\& . "amp") - (#\' . "apos") (#\< . "lt") (#\> . "gt")))) |