aboutsummaryrefslogtreecommitdiffstats
path: root/app/component.moon
diff options
context:
space:
mode:
Diffstat (limited to 'app/component.moon')
-rw-r--r--app/component.moon3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/component.moon b/app/component.moon
index 6dd2999..6ce76bc 100644
--- a/app/component.moon
+++ b/app/component.moon
@@ -122,6 +122,7 @@ with exports = {
}
add = (e) -> exports[e] = (...) -> ReactiveElement e, ...
- for e in *{'div', 'form', 'span', 'article', 'a', 'p', 'button', 'ul', 'ol', 'li', 'i', 'b', 'u', 'tt'} do add e
+ for e in *{'div', 'form', 'span', 'a', 'p', 'button', 'ul', 'ol', 'li', 'i', 'b', 'u', 'tt'} do add e
+ for e in *{'article', 'section', 'header', 'footer', 'content'} do add e
for e in *{'br', 'img', 'input', 'p', 'textarea'} do add e
for i=1,8 do add "h" .. i