From 60bb2cdce6e25e081ca188c5ab8923dfd0248303 Mon Sep 17 00:00:00 2001 From: totoro Date: Mon, 1 Feb 2021 17:47:37 +0900 Subject: [PATCH] add html tag (table, thead, tbody, tfoot, th, td tr) as alternative to table, cell, row from making_a_web_site definition. --- web/CXM_making_a_web_site.anubis | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+), 0 deletions(-) diff --git a/web/CXM_making_a_web_site.anubis b/web/CXM_making_a_web_site.anubis index 94880b0..432f053 100644 --- a/web/CXM_making_a_web_site.anubis +++ b/web/CXM_making_a_web_site.anubis @@ -1571,6 +1571,63 @@ public define HTML_Off_Form strong(CoreAttrs attr, HTML_Off_Form content) public define HTML_Off_Form strong(List(HTML_Off_Form) content) = html_tag("strong", [], content). public define HTML_Off_Form strong(HTML_Off_Form content) = html_tag("strong", [], [content]). + // +public define HTML_Off_Form table(List(CoreAttrs) attrs, List(HTML_Off_Form) content) = html_tag("table", attrs, content). +public define HTML_Off_Form table(List(CoreAttrs) attrs, HTML_Off_Form content) = html_tag("table", attrs, [content]). +public define HTML_Off_Form table(CoreAttrs attr, List(HTML_Off_Form) content) = html_tag("table", [attr], content). +public define HTML_Off_Form table(CoreAttrs attr, HTML_Off_Form content) = html_tag("table", [attr], [content]). +public define HTML_Off_Form table(List(HTML_Off_Form) content) = html_tag("table", [], content). +public define HTML_Off_Form table(HTML_Off_Form content) = html_tag("table", [], [content]). + + // +public define HTML_Off_Form thead(List(CoreAttrs) attrs, List(HTML_Off_Form) content) = html_tag("thead", attrs, content). +public define HTML_Off_Form thead(List(CoreAttrs) attrs, HTML_Off_Form content) = html_tag("thead", attrs, [content]). +public define HTML_Off_Form thead(CoreAttrs attr, List(HTML_Off_Form) content) = html_tag("thead", [attr], content). +public define HTML_Off_Form thead(CoreAttrs attr, HTML_Off_Form content) = html_tag("thead", [attr], [content]). +public define HTML_Off_Form thead(List(HTML_Off_Form) content) = html_tag("thead", [], content). +public define HTML_Off_Form thead(HTML_Off_Form content) = html_tag("thead", [], [content]). + + // +public define HTML_Off_Form tbody(List(CoreAttrs) attrs, List(HTML_Off_Form) content) = html_tag("tbody", attrs, content). +public define HTML_Off_Form tbody(List(CoreAttrs) attrs, HTML_Off_Form content) = html_tag("tbody", attrs, [content]). +public define HTML_Off_Form tbody(CoreAttrs attr, List(HTML_Off_Form) content) = html_tag("tbody", [attr], content). +public define HTML_Off_Form tbody(CoreAttrs attr, HTML_Off_Form content) = html_tag("tbody", [attr], [content]). +public define HTML_Off_Form tbody(List(HTML_Off_Form) content) = html_tag("tbody", [], content). +public define HTML_Off_Form tbody(HTML_Off_Form content) = html_tag("tbody", [], [content]). + + // +public define HTML_Off_Form tfoot(List(CoreAttrs) attrs, List(HTML_Off_Form) content) = html_tag("tfoot", attrs, content). +public define HTML_Off_Form tfoot(List(CoreAttrs) attrs, HTML_Off_Form content) = html_tag("tfoot", attrs, [content]). +public define HTML_Off_Form tfoot(CoreAttrs attr, List(HTML_Off_Form) content) = html_tag("tfoot", [attr], content). +public define HTML_Off_Form tfoot(CoreAttrs attr, HTML_Off_Form content) = html_tag("tfoot", [attr], [content]). +public define HTML_Off_Form tfoot(List(HTML_Off_Form) content) = html_tag("tfoot", [], content). +public define HTML_Off_Form tfoot(HTML_Off_Form content) = html_tag("tfoot", [], [content]). + + // +public define HTML_Off_Form tr(List(CoreAttrs) attrs, List(HTML_Off_Form) content) = html_tag("tr", attrs, content). +public define HTML_Off_Form tr(List(CoreAttrs) attrs, HTML_Off_Form content) = html_tag("tr", attrs, [content]). +public define HTML_Off_Form tr(CoreAttrs attr, List(HTML_Off_Form) content) = html_tag("tr", [attr], content). +public define HTML_Off_Form tr(CoreAttrs attr, HTML_Off_Form content) = html_tag("tr", [attr], [content]). +public define HTML_Off_Form tr(List(HTML_Off_Form) content) = html_tag("tr", [], content). +public define HTML_Off_Form tr(HTML_Off_Form content) = html_tag("tr", [], [content]). + + //
+public define HTML_Off_Form th(List(CoreAttrs) attrs, List(HTML_Off_Form) content) = html_tag("th", attrs, content). +public define HTML_Off_Form th(List(CoreAttrs) attrs, HTML_Off_Form content) = html_tag("th", attrs, [content]). +public define HTML_Off_Form th(CoreAttrs attr, List(HTML_Off_Form) content) = html_tag("th", [attr], content). +public define HTML_Off_Form th(CoreAttrs attr, HTML_Off_Form content) = html_tag("th", [attr], [content]). +public define HTML_Off_Form th(List(HTML_Off_Form) content) = html_tag("th", [], content). +public define HTML_Off_Form th(HTML_Off_Form content) = html_tag("th", [], [content]). + + // +public define HTML_Off_Form td(List(CoreAttrs) attrs, List(HTML_Off_Form) content) = html_tag("td", attrs, content). +public define HTML_Off_Form td(List(CoreAttrs) attrs, HTML_Off_Form content) = html_tag("td", attrs, [content]). +public define HTML_Off_Form td(CoreAttrs attr, List(HTML_Off_Form) content) = html_tag("td", [attr], content). +public define HTML_Off_Form td(CoreAttrs attr, HTML_Off_Form content) = html_tag("td", [attr], [content]). +public define HTML_Off_Form td(List(HTML_Off_Form) content) = html_tag("td", [], content). +public define HTML_Off_Form td(HTML_Off_Form content) = html_tag("td", [], [content]). + + //