This commit is contained in:
Akira Tempaku 2024-05-26 21:45:49 +09:00
commit c24da9a7e9
3 changed files with 8 additions and 8 deletions

View file

@ -25,7 +25,7 @@
(multiple-value-bind (props children)
(parse-body body)
`(create-element ,',(string-downcase name)
',props
(list ,@props)
,@children))))
(defparameter *builtin-elements* (make-hash-table))
@ -58,7 +58,7 @@
(multiple-value-bind (props children)
(parse-body body)
`(create-element #',',%name
',props
(list ,@props)
,@children))))))
(defun builtin-element-p (node)