From eaf1018ddaf52170162fb3d12edfad1b4dc1d16e Mon Sep 17 00:00:00 2001 From: natxocc Date: Sun, 22 Mar 2026 17:38:38 +0100 Subject: [PATCH] increase tags --- sigpro/sigpro.js | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/sigpro/sigpro.js b/sigpro/sigpro.js index bc2c1ae..2c36370 100644 --- a/sigpro/sigpro.js +++ b/sigpro/sigpro.js @@ -111,7 +111,15 @@ return el; }; - const tags = ['div', 'span', 'p', 'button', 'h1', 'h2', 'h3', 'ul', 'ol', 'li', 'a', 'label', 'section', 'nav', 'main', 'header', 'footer', 'input', 'form', 'img', 'select', 'option', 'table', 'thead', 'tbody', 'tr', 'th', 'td', 'canvas', 'video', 'audio']; + const tags = [ + 'div', 'span', 'p', 'section', 'nav', 'main', 'header', 'footer', 'article', 'aside', + 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'ul', 'ol', 'li', 'dl', 'dt', 'dd', + 'button', 'a', 'label', 'strong', 'em', 'code', 'pre', 'br', 'hr', 'small', 'i', 'b', 'u', 'mark', + 'input', 'form', 'select', 'option', 'textarea', 'fieldset', 'legend', 'details', 'summary', + 'table', 'thead', 'tbody', 'tr', 'th', 'td', 'tfoot', 'caption', + 'img', 'canvas', 'video', 'audio', 'svg', 'path', 'iframe' + ]; + tags.forEach(t => window[t] = (p, c) => $.html(t, p, c)); /**