diff options
author | riton <riton@riton.home> | 2025-03-24 00:23:07 +0300 |
---|---|---|
committer | riton <riton@riton.home> | 2025-03-24 00:23:07 +0300 |
commit | 052753e4a3c00929c10702f46cb4404bd11b63d5 (patch) | |
tree | 02bd8daa797a2ed69e41443b14686e716e7106cd /üretim.lisp | |
parent | 411505245c696f7e1e7c80ee2392639165b6b39f (diff) |
markdown dosyasını htmle dönüştürüp şablona gömme
Diffstat (limited to 'üretim.lisp')
-rw-r--r-- | üretim.lisp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/üretim.lisp b/üretim.lisp index 6074888..3f8c8cc 100644 --- a/üretim.lisp +++ b/üretim.lisp @@ -11,13 +11,13 @@ (defun tag-yeni-satır? (tag) (case tag - ((:html :head :body :div :ol :ul) t) + ((:html :head :body :div :ol :ul :link) t) ((:title :p :b :i :code :li) nil))) (defun tag-inline? (tag) (case tag - ((:html :head :body :div :ol :ul :li :p) nil) - ((:title :b :i :code) t))) + ((:html :head :body :div :ol :ul :li :p :title) nil) + ((:b :i :code) t))) (defmethod node->html :before ((node node) &optional (stream *standard-output*)) (unless (not *yeni-satır*) |