Commit e759f37562ac6e58993a00d7ed978a53d4708f25
1 parent
1a856467
add helper for "a" HTML balise
Showing
1 changed file
with
2 additions
and
0 deletions
Show diff stats
web/CXM_making_a_web_site.anubis
| ... | ... | @@ -2058,6 +2058,8 @@ public define HTML_Off_Form a(List(CoreAttrs) attrs, A_href _href, HTML_Off_Form |
| 2058 | 2058 | public define HTML_Off_Form a(List(CoreAttrs) attrs, A_href _href, List(HTML_Off_Form) content) = a(attrs, _href, _self, content). |
| 2059 | 2059 | public define HTML_Off_Form a(A_href _href, HTML_Off_Form content) = a([], _href, _self, [content]). |
| 2060 | 2060 | public define HTML_Off_Form a(A_href _href, List(HTML_Off_Form) content) = a([], _href, _self, content). |
| 2061 | +public define HTML_Off_Form a(List(CoreAttrs) attrs, A_href _href, A_target _target, HTML_Off_Form content) = a(attrs, _href, _target, [content]). | |
| 2062 | +public define HTML_Off_Form a(CoreAttrs attr, A_href _href, A_target _target, HTML_Off_Form content) = a([attr], _href, _target, [content]). | |
| 2061 | 2063 | public define HTML_Off_Form a(A_href _href, A_target _target, HTML_Off_Form content) = a([], _href, _target, [content]). |
| 2062 | 2064 | public define HTML_Off_Form a(A_href _href, A_target _target, List(HTML_Off_Form) content) = a([], _href, _target, content). |
| 2063 | 2065 | ... | ... |