summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuan Manuel Tomás <jtomas1815@gmail.com>2022-08-06 02:24:21 -0300
committerJuan Manuel Tomás <jtomas1815@gmail.com>2022-08-06 02:24:21 -0300
commit76f6673895277c3f0dd23923da3fac8b592a58f9 (patch)
tree0ebefc180ec1183455cf440d218b374be59d45c9
parent2f92286e90c9774df4326b99ac1953970a6e71b7 (diff)
downloadshtml-76f6673895277c3f0dd23923da3fac8b592a58f9.tar.gz
shtml-76f6673895277c3f0dd23923da3fac8b592a58f9.zip
Support more global attributes
-rw-r--r--shtml.lisp2
1 files changed, 1 insertions, 1 deletions
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)