diff --git a/web/making_a_web_site.anubis b/web/making_a_web_site.anubis index 75b551b..a1a29db 100644 --- a/web/making_a_web_site.anubis +++ b/web/making_a_web_site.anubis @@ -1757,11 +1757,12 @@ public define HTML_Off_Form th(List(CoreAttrs) attrs, HTML_Off_Form 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(CoreAttrs attr) = html_tag("th", [attr], []). -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 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 th(String string) = html_tag("th", [], [text(string)]). public define HTML_Off_Form th(CoreAttrs attr, String string) = html_tag("th", [attr], [text(string)]). public define HTML_Off_Form th(List(CoreAttrs) attrs, String string) = html_tag("th", attrs, [text(string)]). +public define HTML_Off_Form th = html_tag("th", [], []). // public define HTML_Off_Form td(List(CoreAttrs) attrs, List(HTML_Off_Form) content) = html_tag("td", attrs, content). -- libgit2 0.21.4