Packages
lustre
3.0.9
5.7.1
5.7.0
5.6.0
5.5.2
5.5.1
5.5.0
5.4.0
5.3.5
5.3.4
5.3.3
5.3.2
5.3.1
5.3.0
5.2.1
5.2.0
5.1.1
5.1.0
5.0.3
5.0.2
5.0.1
5.0.0
4.6.4
4.6.3
4.6.2
4.6.1
4.6.0
4.5.1
4.5.0
4.4.4
4.4.3
4.4.1
4.4.0
4.3.6
4.3.5
4.3.4
4.3.3
4.3.2
4.3.1
4.3.0
4.2.6
4.2.5
4.2.4
4.2.3
4.2.2
4.2.1
4.2.0
4.1.8
4.1.7
4.1.6
4.1.5
4.1.4
4.1.3
4.1.2
4.1.1
4.1.0
4.0.0
4.0.0-rc1
4.0.0-rc.2
3.1.4
3.1.3
3.1.2
3.1.1
3.1.0
3.0.12
3.0.11
3.0.10
3.0.9
3.0.8
3.0.7
3.0.6
3.0.5
3.0.4
3.0.3
3.0.2
3.0.1
3.0.0
3.0.0-rc.8
3.0.0-rc.7
3.0.0-rc.6
3.0.0-rc.5
3.0.0-rc.4
3.0.0-rc.3
3.0.0-rc.2
3.0.0-rc.1
2.0.1
2.0.0
1.3.0
1.2.0
1.1.0
1.0.0
Create HTML templates, single page applications, Web Components, and real-time server components in Gleam!
Current section
Files
Jump to
Current section
Files
src/lustre@element@html.erl
-module(lustre@element@html).
-compile([no_auto_import, nowarn_unused_vars]).
-export([html/2, base/1, head/2, link/1, meta/1, style/2, title/2, body/2, address/2, article/2, aside/2, footer/2, header/2, h1/2, h2/2, h3/2, h4/2, h5/2, h6/2, hgroup/2, main/2, nav/2, section/2, search/2, blockquote/2, dd/2, 'div'/2, dl/2, dt/2, figcaption/2, figure/2, hr/1, li/2, menu/2, ol/2, p/2, pre/2, ul/2, a/2, abbr/2, b/2, bdi/2, bdo/2, br/1, cite/2, code/2, data/2, dfn/2, em/2, i/2, kbd/2, mark/2, q/2, rp/2, rt/2, ruby/2, s/2, samp/2, small/2, span/2, strong/2, sub/2, sup/2, time/2, u/2, var/2, wbr/1, area/1, audio/2, img/1, map/2, track/1, video/2, embed/1, iframe/1, object/1, picture/2, portal/1, source/1, svg/2, math/2, canvas/1, noscript/2, script/2, del/2, ins/2, caption/2, col/1, colgroup/2, table/2, tbody/2, td/2, tfoot/2, th/2, thead/2, tr/2, button/2, datalist/2, fieldset/2, form/2, input/1, label/2, legend/2, meter/2, optgroup/2, option/1, output/2, progress/2, select/2, textarea/1, details/2, dialog/2, summary/2, slot/1, template/2]).
-spec html(
list(lustre@attribute:attribute(GPQ)),
list(lustre@element:element(GPQ))
) -> lustre@element:element(GPQ).
html(Attrs, Children) ->
lustre@element:element(<<"html"/utf8>>, Attrs, Children).
-spec base(list(lustre@attribute:attribute(GPW))) -> lustre@element:element(GPW).
base(Attrs) ->
lustre@element:element(<<"base"/utf8>>, Attrs, []).
-spec head(
list(lustre@attribute:attribute(GQA)),
list(lustre@element:element(GQA))
) -> lustre@element:element(GQA).
head(Attrs, Children) ->
lustre@element:element(<<"head"/utf8>>, Attrs, Children).
-spec link(list(lustre@attribute:attribute(GQG))) -> lustre@element:element(GQG).
link(Attrs) ->
lustre@element:element(<<"link"/utf8>>, Attrs, []).
-spec meta(list(lustre@attribute:attribute(GQK))) -> lustre@element:element(GQK).
meta(Attrs) ->
lustre@element:element(<<"meta"/utf8>>, Attrs, []).
-spec style(list(lustre@attribute:attribute(GQO)), binary()) -> lustre@element:element(GQO).
style(Attrs, Css) ->
lustre@element:element(<<"style"/utf8>>, Attrs, [lustre@element:text(Css)]).
-spec title(list(lustre@attribute:attribute(GQS)), binary()) -> lustre@element:element(GQS).
title(Attrs, Content) ->
lustre@element:element(
<<"title"/utf8>>,
Attrs,
[lustre@element:text(Content)]
).
-spec body(
list(lustre@attribute:attribute(GQW)),
list(lustre@element:element(GQW))
) -> lustre@element:element(GQW).
body(Attrs, Children) ->
lustre@element:element(<<"body"/utf8>>, Attrs, Children).
-spec address(
list(lustre@attribute:attribute(GRC)),
list(lustre@element:element(GRC))
) -> lustre@element:element(GRC).
address(Attrs, Children) ->
lustre@element:element(<<"address"/utf8>>, Attrs, Children).
-spec article(
list(lustre@attribute:attribute(GRI)),
list(lustre@element:element(GRI))
) -> lustre@element:element(GRI).
article(Attrs, Children) ->
lustre@element:element(<<"article"/utf8>>, Attrs, Children).
-spec aside(
list(lustre@attribute:attribute(GRO)),
list(lustre@element:element(GRO))
) -> lustre@element:element(GRO).
aside(Attrs, Children) ->
lustre@element:element(<<"aside"/utf8>>, Attrs, Children).
-spec footer(
list(lustre@attribute:attribute(GRU)),
list(lustre@element:element(GRU))
) -> lustre@element:element(GRU).
footer(Attrs, Children) ->
lustre@element:element(<<"footer"/utf8>>, Attrs, Children).
-spec header(
list(lustre@attribute:attribute(GSA)),
list(lustre@element:element(GSA))
) -> lustre@element:element(GSA).
header(Attrs, Children) ->
lustre@element:element(<<"header"/utf8>>, Attrs, Children).
-spec h1(
list(lustre@attribute:attribute(GSG)),
list(lustre@element:element(GSG))
) -> lustre@element:element(GSG).
h1(Attrs, Children) ->
lustre@element:element(<<"h1"/utf8>>, Attrs, Children).
-spec h2(
list(lustre@attribute:attribute(GSM)),
list(lustre@element:element(GSM))
) -> lustre@element:element(GSM).
h2(Attrs, Children) ->
lustre@element:element(<<"h2"/utf8>>, Attrs, Children).
-spec h3(
list(lustre@attribute:attribute(GSS)),
list(lustre@element:element(GSS))
) -> lustre@element:element(GSS).
h3(Attrs, Children) ->
lustre@element:element(<<"h3"/utf8>>, Attrs, Children).
-spec h4(
list(lustre@attribute:attribute(GSY)),
list(lustre@element:element(GSY))
) -> lustre@element:element(GSY).
h4(Attrs, Children) ->
lustre@element:element(<<"h4"/utf8>>, Attrs, Children).
-spec h5(
list(lustre@attribute:attribute(GTE)),
list(lustre@element:element(GTE))
) -> lustre@element:element(GTE).
h5(Attrs, Children) ->
lustre@element:element(<<"h5"/utf8>>, Attrs, Children).
-spec h6(
list(lustre@attribute:attribute(GTK)),
list(lustre@element:element(GTK))
) -> lustre@element:element(GTK).
h6(Attrs, Children) ->
lustre@element:element(<<"h6"/utf8>>, Attrs, Children).
-spec hgroup(
list(lustre@attribute:attribute(GTQ)),
list(lustre@element:element(GTQ))
) -> lustre@element:element(GTQ).
hgroup(Attrs, Children) ->
lustre@element:element(<<"hgroup"/utf8>>, Attrs, Children).
-spec main(
list(lustre@attribute:attribute(GTW)),
list(lustre@element:element(GTW))
) -> lustre@element:element(GTW).
main(Attrs, Children) ->
lustre@element:element(<<"main"/utf8>>, Attrs, Children).
-spec nav(
list(lustre@attribute:attribute(GUC)),
list(lustre@element:element(GUC))
) -> lustre@element:element(GUC).
nav(Attrs, Children) ->
lustre@element:element(<<"nav"/utf8>>, Attrs, Children).
-spec section(
list(lustre@attribute:attribute(GUI)),
list(lustre@element:element(GUI))
) -> lustre@element:element(GUI).
section(Attrs, Children) ->
lustre@element:element(<<"section"/utf8>>, Attrs, Children).
-spec search(
list(lustre@attribute:attribute(GUO)),
list(lustre@element:element(GUO))
) -> lustre@element:element(GUO).
search(Attrs, Children) ->
lustre@element:element(<<"search"/utf8>>, Attrs, Children).
-spec blockquote(
list(lustre@attribute:attribute(GUU)),
list(lustre@element:element(GUU))
) -> lustre@element:element(GUU).
blockquote(Attrs, Children) ->
lustre@element:element(<<"blockquote"/utf8>>, Attrs, Children).
-spec dd(
list(lustre@attribute:attribute(GVA)),
list(lustre@element:element(GVA))
) -> lustre@element:element(GVA).
dd(Attrs, Children) ->
lustre@element:element(<<"dd"/utf8>>, Attrs, Children).
-spec 'div'(
list(lustre@attribute:attribute(GVG)),
list(lustre@element:element(GVG))
) -> lustre@element:element(GVG).
'div'(Attrs, Children) ->
lustre@element:element(<<"div"/utf8>>, Attrs, Children).
-spec dl(
list(lustre@attribute:attribute(GVM)),
list(lustre@element:element(GVM))
) -> lustre@element:element(GVM).
dl(Attrs, Children) ->
lustre@element:element(<<"dl"/utf8>>, Attrs, Children).
-spec dt(
list(lustre@attribute:attribute(GVS)),
list(lustre@element:element(GVS))
) -> lustre@element:element(GVS).
dt(Attrs, Children) ->
lustre@element:element(<<"dt"/utf8>>, Attrs, Children).
-spec figcaption(
list(lustre@attribute:attribute(GVY)),
list(lustre@element:element(GVY))
) -> lustre@element:element(GVY).
figcaption(Attrs, Children) ->
lustre@element:element(<<"figcaption"/utf8>>, Attrs, Children).
-spec figure(
list(lustre@attribute:attribute(GWE)),
list(lustre@element:element(GWE))
) -> lustre@element:element(GWE).
figure(Attrs, Children) ->
lustre@element:element(<<"figure"/utf8>>, Attrs, Children).
-spec hr(list(lustre@attribute:attribute(GWK))) -> lustre@element:element(GWK).
hr(Attrs) ->
lustre@element:element(<<"hr"/utf8>>, Attrs, []).
-spec li(
list(lustre@attribute:attribute(GWO)),
list(lustre@element:element(GWO))
) -> lustre@element:element(GWO).
li(Attrs, Children) ->
lustre@element:element(<<"li"/utf8>>, Attrs, Children).
-spec menu(
list(lustre@attribute:attribute(GWU)),
list(lustre@element:element(GWU))
) -> lustre@element:element(GWU).
menu(Attrs, Children) ->
lustre@element:element(<<"menu"/utf8>>, Attrs, Children).
-spec ol(
list(lustre@attribute:attribute(GXA)),
list(lustre@element:element(GXA))
) -> lustre@element:element(GXA).
ol(Attrs, Children) ->
lustre@element:element(<<"ol"/utf8>>, Attrs, Children).
-spec p(
list(lustre@attribute:attribute(GXG)),
list(lustre@element:element(GXG))
) -> lustre@element:element(GXG).
p(Attrs, Children) ->
lustre@element:element(<<"p"/utf8>>, Attrs, Children).
-spec pre(
list(lustre@attribute:attribute(GXM)),
list(lustre@element:element(GXM))
) -> lustre@element:element(GXM).
pre(Attrs, Children) ->
lustre@element:element(<<"pre"/utf8>>, Attrs, Children).
-spec ul(
list(lustre@attribute:attribute(GXS)),
list(lustre@element:element(GXS))
) -> lustre@element:element(GXS).
ul(Attrs, Children) ->
lustre@element:element(<<"ul"/utf8>>, Attrs, Children).
-spec a(
list(lustre@attribute:attribute(GXY)),
list(lustre@element:element(GXY))
) -> lustre@element:element(GXY).
a(Attrs, Children) ->
lustre@element:element(<<"a"/utf8>>, Attrs, Children).
-spec abbr(
list(lustre@attribute:attribute(GYE)),
list(lustre@element:element(GYE))
) -> lustre@element:element(GYE).
abbr(Attrs, Children) ->
lustre@element:element(<<"abbr"/utf8>>, Attrs, Children).
-spec b(
list(lustre@attribute:attribute(GYK)),
list(lustre@element:element(GYK))
) -> lustre@element:element(GYK).
b(Attrs, Children) ->
lustre@element:element(<<"b"/utf8>>, Attrs, Children).
-spec bdi(
list(lustre@attribute:attribute(GYQ)),
list(lustre@element:element(GYQ))
) -> lustre@element:element(GYQ).
bdi(Attrs, Children) ->
lustre@element:element(<<"bdi"/utf8>>, Attrs, Children).
-spec bdo(
list(lustre@attribute:attribute(GYW)),
list(lustre@element:element(GYW))
) -> lustre@element:element(GYW).
bdo(Attrs, Children) ->
lustre@element:element(<<"bdo"/utf8>>, Attrs, Children).
-spec br(list(lustre@attribute:attribute(GZC))) -> lustre@element:element(GZC).
br(Attrs) ->
lustre@element:element(<<"br"/utf8>>, Attrs, []).
-spec cite(
list(lustre@attribute:attribute(GZG)),
list(lustre@element:element(GZG))
) -> lustre@element:element(GZG).
cite(Attrs, Children) ->
lustre@element:element(<<"cite"/utf8>>, Attrs, Children).
-spec code(
list(lustre@attribute:attribute(GZM)),
list(lustre@element:element(GZM))
) -> lustre@element:element(GZM).
code(Attrs, Children) ->
lustre@element:element(<<"code"/utf8>>, Attrs, Children).
-spec data(
list(lustre@attribute:attribute(GZS)),
list(lustre@element:element(GZS))
) -> lustre@element:element(GZS).
data(Attrs, Children) ->
lustre@element:element(<<"data"/utf8>>, Attrs, Children).
-spec dfn(
list(lustre@attribute:attribute(GZY)),
list(lustre@element:element(GZY))
) -> lustre@element:element(GZY).
dfn(Attrs, Children) ->
lustre@element:element(<<"dfn"/utf8>>, Attrs, Children).
-spec em(
list(lustre@attribute:attribute(HAE)),
list(lustre@element:element(HAE))
) -> lustre@element:element(HAE).
em(Attrs, Children) ->
lustre@element:element(<<"em"/utf8>>, Attrs, Children).
-spec i(
list(lustre@attribute:attribute(HAK)),
list(lustre@element:element(HAK))
) -> lustre@element:element(HAK).
i(Attrs, Children) ->
lustre@element:element(<<"i"/utf8>>, Attrs, Children).
-spec kbd(
list(lustre@attribute:attribute(HAQ)),
list(lustre@element:element(HAQ))
) -> lustre@element:element(HAQ).
kbd(Attrs, Children) ->
lustre@element:element(<<"kbd"/utf8>>, Attrs, Children).
-spec mark(
list(lustre@attribute:attribute(HAW)),
list(lustre@element:element(HAW))
) -> lustre@element:element(HAW).
mark(Attrs, Children) ->
lustre@element:element(<<"mark"/utf8>>, Attrs, Children).
-spec q(
list(lustre@attribute:attribute(HBC)),
list(lustre@element:element(HBC))
) -> lustre@element:element(HBC).
q(Attrs, Children) ->
lustre@element:element(<<"q"/utf8>>, Attrs, Children).
-spec rp(
list(lustre@attribute:attribute(HBI)),
list(lustre@element:element(HBI))
) -> lustre@element:element(HBI).
rp(Attrs, Children) ->
lustre@element:element(<<"rp"/utf8>>, Attrs, Children).
-spec rt(
list(lustre@attribute:attribute(HBO)),
list(lustre@element:element(HBO))
) -> lustre@element:element(HBO).
rt(Attrs, Children) ->
lustre@element:element(<<"rt"/utf8>>, Attrs, Children).
-spec ruby(
list(lustre@attribute:attribute(HBU)),
list(lustre@element:element(HBU))
) -> lustre@element:element(HBU).
ruby(Attrs, Children) ->
lustre@element:element(<<"ruby"/utf8>>, Attrs, Children).
-spec s(
list(lustre@attribute:attribute(HCA)),
list(lustre@element:element(HCA))
) -> lustre@element:element(HCA).
s(Attrs, Children) ->
lustre@element:element(<<"s"/utf8>>, Attrs, Children).
-spec samp(
list(lustre@attribute:attribute(HCG)),
list(lustre@element:element(HCG))
) -> lustre@element:element(HCG).
samp(Attrs, Children) ->
lustre@element:element(<<"samp"/utf8>>, Attrs, Children).
-spec small(
list(lustre@attribute:attribute(HCM)),
list(lustre@element:element(HCM))
) -> lustre@element:element(HCM).
small(Attrs, Children) ->
lustre@element:element(<<"small"/utf8>>, Attrs, Children).
-spec span(
list(lustre@attribute:attribute(HCS)),
list(lustre@element:element(HCS))
) -> lustre@element:element(HCS).
span(Attrs, Children) ->
lustre@element:element(<<"span"/utf8>>, Attrs, Children).
-spec strong(
list(lustre@attribute:attribute(HCY)),
list(lustre@element:element(HCY))
) -> lustre@element:element(HCY).
strong(Attrs, Children) ->
lustre@element:element(<<"strong"/utf8>>, Attrs, Children).
-spec sub(
list(lustre@attribute:attribute(HDE)),
list(lustre@element:element(HDE))
) -> lustre@element:element(HDE).
sub(Attrs, Children) ->
lustre@element:element(<<"sub"/utf8>>, Attrs, Children).
-spec sup(
list(lustre@attribute:attribute(HDK)),
list(lustre@element:element(HDK))
) -> lustre@element:element(HDK).
sup(Attrs, Children) ->
lustre@element:element(<<"sup"/utf8>>, Attrs, Children).
-spec time(
list(lustre@attribute:attribute(HDQ)),
list(lustre@element:element(HDQ))
) -> lustre@element:element(HDQ).
time(Attrs, Children) ->
lustre@element:element(<<"time"/utf8>>, Attrs, Children).
-spec u(
list(lustre@attribute:attribute(HDW)),
list(lustre@element:element(HDW))
) -> lustre@element:element(HDW).
u(Attrs, Children) ->
lustre@element:element(<<"u"/utf8>>, Attrs, Children).
-spec var(
list(lustre@attribute:attribute(HEC)),
list(lustre@element:element(HEC))
) -> lustre@element:element(HEC).
var(Attrs, Children) ->
lustre@element:element(<<"var"/utf8>>, Attrs, Children).
-spec wbr(list(lustre@attribute:attribute(HEI))) -> lustre@element:element(HEI).
wbr(Attrs) ->
lustre@element:element(<<"wbr"/utf8>>, Attrs, []).
-spec area(list(lustre@attribute:attribute(HEM))) -> lustre@element:element(HEM).
area(Attrs) ->
lustre@element:element(<<"area"/utf8>>, Attrs, []).
-spec audio(
list(lustre@attribute:attribute(HEQ)),
list(lustre@element:element(HEQ))
) -> lustre@element:element(HEQ).
audio(Attrs, Children) ->
lustre@element:element(<<"audio"/utf8>>, Attrs, Children).
-spec img(list(lustre@attribute:attribute(HEW))) -> lustre@element:element(HEW).
img(Attrs) ->
lustre@element:element(<<"img"/utf8>>, Attrs, []).
-spec map(
list(lustre@attribute:attribute(HFA)),
list(lustre@element:element(HFA))
) -> lustre@element:element(HFA).
map(Attrs, Children) ->
lustre@element:element(<<"map"/utf8>>, Attrs, Children).
-spec track(list(lustre@attribute:attribute(HFG))) -> lustre@element:element(HFG).
track(Attrs) ->
lustre@element:element(<<"track"/utf8>>, Attrs, []).
-spec video(
list(lustre@attribute:attribute(HFK)),
list(lustre@element:element(HFK))
) -> lustre@element:element(HFK).
video(Attrs, Children) ->
lustre@element:element(<<"video"/utf8>>, Attrs, Children).
-spec embed(list(lustre@attribute:attribute(HFQ))) -> lustre@element:element(HFQ).
embed(Attrs) ->
lustre@element:element(<<"embed"/utf8>>, Attrs, []).
-spec iframe(list(lustre@attribute:attribute(HFU))) -> lustre@element:element(HFU).
iframe(Attrs) ->
lustre@element:element(<<"iframe"/utf8>>, Attrs, []).
-spec object(list(lustre@attribute:attribute(HFY))) -> lustre@element:element(HFY).
object(Attrs) ->
lustre@element:element(<<"object"/utf8>>, Attrs, []).
-spec picture(
list(lustre@attribute:attribute(HGC)),
list(lustre@element:element(HGC))
) -> lustre@element:element(HGC).
picture(Attrs, Children) ->
lustre@element:element(<<"picture"/utf8>>, Attrs, Children).
-spec portal(list(lustre@attribute:attribute(HGI))) -> lustre@element:element(HGI).
portal(Attrs) ->
lustre@element:element(<<"portal"/utf8>>, Attrs, []).
-spec source(list(lustre@attribute:attribute(HGM))) -> lustre@element:element(HGM).
source(Attrs) ->
lustre@element:element(<<"source"/utf8>>, Attrs, []).
-spec svg(
list(lustre@attribute:attribute(HGQ)),
list(lustre@element:element(HGQ))
) -> lustre@element:element(HGQ).
svg(Attrs, Children) ->
lustre@element:namespaced(
<<"http://www.w3.org/2000/svg"/utf8>>,
<<"svg"/utf8>>,
Attrs,
Children
).
-spec math(
list(lustre@attribute:attribute(HGW)),
list(lustre@element:element(HGW))
) -> lustre@element:element(HGW).
math(Attrs, Children) ->
lustre@element:element(<<"math"/utf8>>, Attrs, Children).
-spec canvas(list(lustre@attribute:attribute(HHC))) -> lustre@element:element(HHC).
canvas(Attrs) ->
lustre@element:element(<<"canvas"/utf8>>, Attrs, []).
-spec noscript(
list(lustre@attribute:attribute(HHG)),
list(lustre@element:element(HHG))
) -> lustre@element:element(HHG).
noscript(Attrs, Children) ->
lustre@element:element(<<"noscript"/utf8>>, Attrs, Children).
-spec script(list(lustre@attribute:attribute(HHM)), binary()) -> lustre@element:element(HHM).
script(Attrs, Js) ->
lustre@element:element(<<"script"/utf8>>, Attrs, [lustre@element:text(Js)]).
-spec del(
list(lustre@attribute:attribute(HHQ)),
list(lustre@element:element(HHQ))
) -> lustre@element:element(HHQ).
del(Attrs, Children) ->
lustre@element:element(<<"del"/utf8>>, Attrs, Children).
-spec ins(
list(lustre@attribute:attribute(HHW)),
list(lustre@element:element(HHW))
) -> lustre@element:element(HHW).
ins(Attrs, Children) ->
lustre@element:element(<<"ins"/utf8>>, Attrs, Children).
-spec caption(
list(lustre@attribute:attribute(HIC)),
list(lustre@element:element(HIC))
) -> lustre@element:element(HIC).
caption(Attrs, Children) ->
lustre@element:element(<<"caption"/utf8>>, Attrs, Children).
-spec col(list(lustre@attribute:attribute(HII))) -> lustre@element:element(HII).
col(Attrs) ->
lustre@element:element(<<"col"/utf8>>, Attrs, []).
-spec colgroup(
list(lustre@attribute:attribute(HIM)),
list(lustre@element:element(HIM))
) -> lustre@element:element(HIM).
colgroup(Attrs, Children) ->
lustre@element:element(<<"colgroup"/utf8>>, Attrs, Children).
-spec table(
list(lustre@attribute:attribute(HIS)),
list(lustre@element:element(HIS))
) -> lustre@element:element(HIS).
table(Attrs, Children) ->
lustre@element:element(<<"table"/utf8>>, Attrs, Children).
-spec tbody(
list(lustre@attribute:attribute(HIY)),
list(lustre@element:element(HIY))
) -> lustre@element:element(HIY).
tbody(Attrs, Children) ->
lustre@element:element(<<"tbody"/utf8>>, Attrs, Children).
-spec td(
list(lustre@attribute:attribute(HJE)),
list(lustre@element:element(HJE))
) -> lustre@element:element(HJE).
td(Attrs, Children) ->
lustre@element:element(<<"td"/utf8>>, Attrs, Children).
-spec tfoot(
list(lustre@attribute:attribute(HJK)),
list(lustre@element:element(HJK))
) -> lustre@element:element(HJK).
tfoot(Attrs, Children) ->
lustre@element:element(<<"tfoot"/utf8>>, Attrs, Children).
-spec th(
list(lustre@attribute:attribute(HJQ)),
list(lustre@element:element(HJQ))
) -> lustre@element:element(HJQ).
th(Attrs, Children) ->
lustre@element:element(<<"th"/utf8>>, Attrs, Children).
-spec thead(
list(lustre@attribute:attribute(HJW)),
list(lustre@element:element(HJW))
) -> lustre@element:element(HJW).
thead(Attrs, Children) ->
lustre@element:element(<<"thead"/utf8>>, Attrs, Children).
-spec tr(
list(lustre@attribute:attribute(HKC)),
list(lustre@element:element(HKC))
) -> lustre@element:element(HKC).
tr(Attrs, Children) ->
lustre@element:element(<<"tr"/utf8>>, Attrs, Children).
-spec button(
list(lustre@attribute:attribute(HKI)),
list(lustre@element:element(HKI))
) -> lustre@element:element(HKI).
button(Attrs, Children) ->
lustre@element:element(<<"button"/utf8>>, Attrs, Children).
-spec datalist(
list(lustre@attribute:attribute(HKO)),
list(lustre@element:element(HKO))
) -> lustre@element:element(HKO).
datalist(Attrs, Children) ->
lustre@element:element(<<"datalist"/utf8>>, Attrs, Children).
-spec fieldset(
list(lustre@attribute:attribute(HKU)),
list(lustre@element:element(HKU))
) -> lustre@element:element(HKU).
fieldset(Attrs, Children) ->
lustre@element:element(<<"fieldset"/utf8>>, Attrs, Children).
-spec form(
list(lustre@attribute:attribute(HLA)),
list(lustre@element:element(HLA))
) -> lustre@element:element(HLA).
form(Attrs, Children) ->
lustre@element:element(<<"form"/utf8>>, Attrs, Children).
-spec input(list(lustre@attribute:attribute(HLG))) -> lustre@element:element(HLG).
input(Attrs) ->
lustre@element:element(<<"input"/utf8>>, Attrs, []).
-spec label(
list(lustre@attribute:attribute(HLK)),
list(lustre@element:element(HLK))
) -> lustre@element:element(HLK).
label(Attrs, Children) ->
lustre@element:element(<<"label"/utf8>>, Attrs, Children).
-spec legend(
list(lustre@attribute:attribute(HLQ)),
list(lustre@element:element(HLQ))
) -> lustre@element:element(HLQ).
legend(Attrs, Children) ->
lustre@element:element(<<"legend"/utf8>>, Attrs, Children).
-spec meter(
list(lustre@attribute:attribute(HLW)),
list(lustre@element:element(HLW))
) -> lustre@element:element(HLW).
meter(Attrs, Children) ->
lustre@element:element(<<"meter"/utf8>>, Attrs, Children).
-spec optgroup(
list(lustre@attribute:attribute(HMC)),
list(lustre@element:element(HMC))
) -> lustre@element:element(HMC).
optgroup(Attrs, Children) ->
lustre@element:element(<<"optgroup"/utf8>>, Attrs, Children).
-spec option(list(lustre@attribute:attribute(HMI))) -> lustre@element:element(HMI).
option(Attrs) ->
lustre@element:element(<<"option"/utf8>>, Attrs, []).
-spec output(
list(lustre@attribute:attribute(HMM)),
list(lustre@element:element(HMM))
) -> lustre@element:element(HMM).
output(Attrs, Children) ->
lustre@element:element(<<"output"/utf8>>, Attrs, Children).
-spec progress(
list(lustre@attribute:attribute(HMS)),
list(lustre@element:element(HMS))
) -> lustre@element:element(HMS).
progress(Attrs, Children) ->
lustre@element:element(<<"progress"/utf8>>, Attrs, Children).
-spec select(
list(lustre@attribute:attribute(HMY)),
list(lustre@element:element(HMY))
) -> lustre@element:element(HMY).
select(Attrs, Children) ->
lustre@element:element(<<"select"/utf8>>, Attrs, Children).
-spec textarea(list(lustre@attribute:attribute(HNE))) -> lustre@element:element(HNE).
textarea(Attrs) ->
lustre@element:element(<<"textarea"/utf8>>, Attrs, []).
-spec details(
list(lustre@attribute:attribute(HNI)),
list(lustre@element:element(HNI))
) -> lustre@element:element(HNI).
details(Attrs, Children) ->
lustre@element:element(<<"details"/utf8>>, Attrs, Children).
-spec dialog(
list(lustre@attribute:attribute(HNO)),
list(lustre@element:element(HNO))
) -> lustre@element:element(HNO).
dialog(Attrs, Children) ->
lustre@element:element(<<"dialog"/utf8>>, Attrs, Children).
-spec summary(
list(lustre@attribute:attribute(HNU)),
list(lustre@element:element(HNU))
) -> lustre@element:element(HNU).
summary(Attrs, Children) ->
lustre@element:element(<<"summary"/utf8>>, Attrs, Children).
-spec slot(list(lustre@attribute:attribute(HOA))) -> lustre@element:element(HOA).
slot(Attrs) ->
lustre@element:element(<<"slot"/utf8>>, Attrs, []).
-spec template(
list(lustre@attribute:attribute(HOE)),
list(lustre@element:element(HOE))
) -> lustre@element:element(HOE).
template(Attrs, Children) ->
lustre@element:element(<<"template"/utf8>>, Attrs, Children).