From 76f6673895277c3f0dd23923da3fac8b592a58f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Manuel=20Tom=C3=A1s?= Date: Sat, 6 Aug 2022 02:24:21 -0300 Subject: Support more global attributes --- shtml.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'shtml.lisp') diff --git a/shtml.lisp b/shtml.lisp index 78f8199..dcbdfee 100644 --- a/shtml.lisp +++ b/shtml.lisp @@ -20,7 +20,7 @@ (defmacro define-html (tag &key single attrs) (let* ((args (gensym)) - (attrs (append (list 'id 'class) attrs)) + (attrs (append (list 'style 'lang 'id 'class 'title 'hidden) attrs)) (tag-name (downcase-name tag)) (attrs-and-values (cons 'list (mapcar (lambda (attr) -- cgit v1.2.3