diff --git a/web/CXM_making_a_web_site.anubis b/web/CXM_making_a_web_site.anubis index aab9062..747677c 100644 --- a/web/CXM_making_a_web_site.anubis +++ b/web/CXM_making_a_web_site.anubis @@ -1941,6 +1941,10 @@ public define HTML_Off_Form h6(List(CoreAttrs) attrs, HTML_Off_Form content) public define HTML_Off_Form h6(List(HTML_Off_Form) content) = html_tag("h6", [], content). public define HTML_Off_Form h6(HTML_Off_Form content) = html_tag("h6", [], [content]). + //
+public define HTML_Off_Form hr = html_void_tag("hr", []). +public define HTML_Off_Form hr(List(CoreAttrs) attrs) = html_void_tag("hr", attrs). + // public define HTML_Off_Form img(List(CoreAttrs) attrs, String src, String alt) = html_void_tag("img", attrs + [attr("src",src), attr("alt",alt)] ). public define HTML_Off_Form img(String src) = img([], src, ""). -- libgit2 0.21.4