summaryrefslogtreecommitdiff
path: root/tanım.lisp
diff options
context:
space:
mode:
authorriton <riton@riton.home>2025-03-28 21:52:26 +0300
committerriton <riton@riton.home>2025-03-28 21:52:26 +0300
commit80152b609225285251a49d1532bf8746bfbab35d (patch)
tree50faec2cdc1dea1cb0aa84dffa48ab3970af2952 /tanım.lisp
parent4b494af46035e80bb741881c1717c789638607c5 (diff)
kaynak dosyalar src dizinine taşındı
Diffstat (limited to 'tanım.lisp')
-rw-r--r--tanım.lisp20
1 files changed, 0 insertions, 20 deletions
diff --git a/tanım.lisp b/tanım.lisp
deleted file mode 100644
index 43af26c..0000000
--- a/tanım.lisp
+++ /dev/null
@@ -1,20 +0,0 @@
-(in-package :html-jen)
-
-(defclass node ()
- ((tag :initarg :tag :accessor tag :initform nil
- :documentation "HTML element tag keyword'ü")
- (children :initarg :children :accessor children :initform nil
- :documentation "Bu node'un altındaki node'lar")
- (props :initarg :props :accessor props :initform nil
- :documentation "HTML element attribute'ları ve değerleri")
- (value :initarg :value :accessor value :initform nil
- :documentation "HTML element metin içeriği")))
-
-(defun node! (tag children props value)
- (make-instance 'node :tag tag :children children :props props :value value))
-
-(defun ebeveyn-node! (tag children &optional props)
- (make-instance 'node :tag tag :children children :props props))
-
-(defun çocuk-node! (tag value &optional props)
- (make-instance 'node :tag tag :props props :value value))