summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorriton <riton@riton.home>2025-03-26 00:10:11 +0300
committerriton <riton@riton.home>2025-03-26 00:10:11 +0300
commit06cc8a21bfee960d29db921c565543f55dc728ab (patch)
tree4893db3b682b50bc35dfa5115e0ea5c11ebff81b
parent85b2910290f762533dfc7f507e9293424e379c81 (diff)
tag içeriğinde '<', '>' ve '&' karakterlerini özel yazdır
-rw-r--r--üretim.lisp12
1 files changed, 11 insertions, 1 deletions
diff --git a/üretim.lisp b/üretim.lisp
index 51d75e0..2ae81f4 100644
--- a/üretim.lisp
+++ b/üretim.lisp
@@ -23,6 +23,16 @@
(write-char #\Newline stream)
(setf *satır-başı* t))
+;;;; https://stackoverflow.com/questions/7381974/which-characters-need-to-be-escaped-in-html
+;;; TODO geliştirme mümkün... ama şimdilik yeter (#\" "&quot;") (#\' "&#39;")
+(defun kaçışlı-içerik-yazdır (metin stream)
+ (loop :for karakter :across metin
+ :do (case karakter
+ (#\< (write-string "&lt;" stream))
+ (#\> (write-string "&gt;" stream))
+ (#\& (write-string "&amp;" stream))
+ (t (write-char karakter stream)))))
+
(defmethod node->html :before ((node node) &optional (stream *standard-output*))
(unless (not *satır-başı*)
(loop :for i :from 0 :below *indent*
@@ -39,7 +49,7 @@
(defmethod node->html ((node node) &optional (stream *standard-output*))
(if (null (children node))
- (format stream "~a" (value node))
+ (kaçışlı-içerik-yazdır (value node) stream)
(let ((*indent* (+ *indent* *indent-increment*)))
(loop :for child :in (children node)
:do (node->html child stream)))))