Commit 7e1cc96e6699fac2455766aff8d14d8833e9818b
1 parent
f4662313
[+] add 2 helpers for "ul" HTML balise with 1 CoreAttrs as parameter
Showing
1 changed file
with
2 additions
and
0 deletions
Show diff stats
web/CXM_making_a_web_site.anubis
| ... | ... | @@ -1747,6 +1747,8 @@ public define HTML_Off_Form strong(HTML_Off_Form content) |
| 1747 | 1747 | // <ul> |
| 1748 | 1748 | public define HTML_Off_Form ul(List(CoreAttrs) attrs, List(HTML_Off_Form) content) = html_tag("ul", attrs, content). |
| 1749 | 1749 | public define HTML_Off_Form ul(List(CoreAttrs) attrs, HTML_Off_Form content) = html_tag("ul", attrs, [content]). |
| 1750 | +public define HTML_Off_Form ul(CoreAttrs attr, List(HTML_Off_Form) content) = html_tag("ul", [attr], content). | |
| 1751 | +public define HTML_Off_Form ul(CoreAttrs attr, HTML_Off_Form content) = html_tag("ul", [attr], [content]). | |
| 1750 | 1752 | public define HTML_Off_Form ul(List(HTML_Off_Form) content) = html_tag("ul", [], content). |
| 1751 | 1753 | public define HTML_Off_Form ul(HTML_Off_Form content) = html_tag("ul", [], [content]). |
| 1752 | 1754 | ... | ... |