aboutsummaryrefslogtreecommitdiff
path: root/formatters.lisp
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <code@mail.matthias.benkard.de>2011-03-14 20:32:32 +0100
committerMatthias Andreas Benkard <code@mail.matthias.benkard.de>2011-03-14 20:32:32 +0100
commit8a862ae2f15d1432898ff38ec1c6be5e0eeaab1d (patch)
tree07caa144acf017abe82f369c2276710086d734d5 /formatters.lisp
parent28fcc3118cda1b2f0c74ddfd3f597c6795d0bb7b (diff)
Fix HTML formatters.
Diffstat (limited to 'formatters.lisp')
-rw-r--r--formatters.lisp4
1 files changed, 2 insertions, 2 deletions
diff --git a/formatters.lisp b/formatters.lisp
index e5bf333..a16ad93 100644
--- a/formatters.lisp
+++ b/formatters.lisp
@@ -56,10 +56,10 @@
(defvar *template-formatters*
`(("html" . ,(make-escaper '((#\< . "&#60;")
- (#\> . "&#63;")
+ (#\> . "&#62;")
(#\& . "&#38;"))))
("html-attr-value" . ,(make-escaper '((#\< . "&#60;")
- (#\> . "&#63;")
+ (#\> . "&#62;")
(#\& . "&#38;")
(#\' . "&#39;")
(#\" . "&#34;"))))