From 56e530ab078e17b77356c4c7611929ae4d44e75d Mon Sep 17 00:00:00 2001 From: totoro Date: Thu, 16 Apr 2026 10:30:24 +0900 Subject: [PATCH] [+] add html th tag without any argument --- web/making_a_web_site.anubis | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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