aboutsummaryrefslogtreecommitdiffstats
path: root/app/html.client.moon
diff options
context:
space:
mode:
authors-ol <s-ol@users.noreply.github.com>2018-09-18 04:01:05 +0000
committers-ol <s-ol@users.noreply.github.com>2018-09-18 04:01:05 +0000
commit6b45dd8900c84531a5eba6de0837e0f84d619286 (patch)
treeff0d130a5f830e4d848469667ee2aa11da3b393e /app/html.client.moon
parentcleanup (diff)
downloadmmm-6b45dd8900c84531a5eba6de0837e0f84d619286.tar.gz
mmm-6b45dd8900c84531a5eba6de0837e0f84d619286.zip
tape
Diffstat (limited to 'app/html.client.moon')
-rw-r--r--app/html.client.moon5
1 files changed, 3 insertions, 2 deletions
diff --git a/app/html.client.moon b/app/html.client.moon
index fdec714..77d6c51 100644
--- a/app/html.client.moon
+++ b/app/html.client.moon
@@ -28,8 +28,9 @@ element = (element) -> (...) ->
elements = {}
add = (e) -> elements[e] = element e
-for e in *{'div', 'span', 'a', 'p', 'pre', 'button', 'ul', 'li', 'i', 'b', 'u', 'tt'} do add e
-for e in *{'br', 'img', 'input', 'p'} 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', 'hr', 'img', 'input', 'p', 'textarea'} do add e
for i=1,8 do add "h" .. i
elements