aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;"))))