diff options
-rw-r--r-- | formatters.lisp | 4 |
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 '((#\< . "<") - (#\> . "?") + (#\> . ">") (#\& . "&")))) ("html-attr-value" . ,(make-escaper '((#\< . "<") - (#\> . "?") + (#\> . ">") (#\& . "&") (#\' . "'") (#\" . """)))) |