Current section

Files

Jump to
lustre src lustre@html.erl
Raw

src/lustre@html.erl

-module(lustre@html).
-compile([no_auto_import, nowarn_unused_vars]).
-export([html/2, base/1, head/1, 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(FRT)),
list(lustre@element:element(FRT))
) -> lustre@element:element(FRT).
html(Attrs, Children) ->
lustre@element:h(<<"html"/utf8>>, Attrs, Children).
-spec base(list(lustre@attribute:attribute(FRZ))) -> lustre@element:element(FRZ).
base(Attrs) ->
lustre@element:h(<<"base"/utf8>>, Attrs, []).
-spec head(list(lustre@attribute:attribute(FSD))) -> lustre@element:element(FSD).
head(Attrs) ->
lustre@element:h(<<"head"/utf8>>, Attrs, []).
-spec link(list(lustre@attribute:attribute(FSH))) -> lustre@element:element(FSH).
link(Attrs) ->
lustre@element:h(<<"link"/utf8>>, Attrs, []).
-spec meta(list(lustre@attribute:attribute(FSL))) -> lustre@element:element(FSL).
meta(Attrs) ->
lustre@element:h(<<"meta"/utf8>>, Attrs, []).
-spec style(list(lustre@attribute:attribute(FSP)), binary()) -> lustre@element:element(FSP).
style(Attrs, Css) ->
lustre@element:h(<<"style"/utf8>>, Attrs, [lustre@element:t(Css)]).
-spec title(list(lustre@attribute:attribute(FST)), binary()) -> lustre@element:element(FST).
title(Attrs, Text) ->
lustre@element:h(<<"title"/utf8>>, Attrs, [lustre@element:t(Text)]).
-spec body(
list(lustre@attribute:attribute(FSX)),
list(lustre@element:element(FSX))
) -> lustre@element:element(FSX).
body(Attrs, Children) ->
lustre@element:h(<<"body"/utf8>>, Attrs, Children).
-spec address(
list(lustre@attribute:attribute(FTD)),
list(lustre@element:element(FTD))
) -> lustre@element:element(FTD).
address(Attrs, Children) ->
lustre@element:h(<<"address"/utf8>>, Attrs, Children).
-spec article(
list(lustre@attribute:attribute(FTJ)),
list(lustre@element:element(FTJ))
) -> lustre@element:element(FTJ).
article(Attrs, Children) ->
lustre@element:h(<<"article"/utf8>>, Attrs, Children).
-spec aside(
list(lustre@attribute:attribute(FTP)),
list(lustre@element:element(FTP))
) -> lustre@element:element(FTP).
aside(Attrs, Children) ->
lustre@element:h(<<"aside"/utf8>>, Attrs, Children).
-spec footer(
list(lustre@attribute:attribute(FTV)),
list(lustre@element:element(FTV))
) -> lustre@element:element(FTV).
footer(Attrs, Children) ->
lustre@element:h(<<"footer"/utf8>>, Attrs, Children).
-spec header(
list(lustre@attribute:attribute(FUB)),
list(lustre@element:element(FUB))
) -> lustre@element:element(FUB).
header(Attrs, Children) ->
lustre@element:h(<<"header"/utf8>>, Attrs, Children).
-spec h1(
list(lustre@attribute:attribute(FUH)),
list(lustre@element:element(FUH))
) -> lustre@element:element(FUH).
h1(Attrs, Children) ->
lustre@element:h(<<"h1"/utf8>>, Attrs, Children).
-spec h2(
list(lustre@attribute:attribute(FUN)),
list(lustre@element:element(FUN))
) -> lustre@element:element(FUN).
h2(Attrs, Children) ->
lustre@element:h(<<"h2"/utf8>>, Attrs, Children).
-spec h3(
list(lustre@attribute:attribute(FUT)),
list(lustre@element:element(FUT))
) -> lustre@element:element(FUT).
h3(Attrs, Children) ->
lustre@element:h(<<"h3"/utf8>>, Attrs, Children).
-spec h4(
list(lustre@attribute:attribute(FUZ)),
list(lustre@element:element(FUZ))
) -> lustre@element:element(FUZ).
h4(Attrs, Children) ->
lustre@element:h(<<"h4"/utf8>>, Attrs, Children).
-spec h5(
list(lustre@attribute:attribute(FVF)),
list(lustre@element:element(FVF))
) -> lustre@element:element(FVF).
h5(Attrs, Children) ->
lustre@element:h(<<"h5"/utf8>>, Attrs, Children).
-spec h6(
list(lustre@attribute:attribute(FVL)),
list(lustre@element:element(FVL))
) -> lustre@element:element(FVL).
h6(Attrs, Children) ->
lustre@element:h(<<"h6"/utf8>>, Attrs, Children).
-spec hgroup(
list(lustre@attribute:attribute(FVR)),
list(lustre@element:element(FVR))
) -> lustre@element:element(FVR).
hgroup(Attrs, Children) ->
lustre@element:h(<<"hgroup"/utf8>>, Attrs, Children).
-spec main(
list(lustre@attribute:attribute(FVX)),
list(lustre@element:element(FVX))
) -> lustre@element:element(FVX).
main(Attrs, Children) ->
lustre@element:h(<<"main"/utf8>>, Attrs, Children).
-spec nav(
list(lustre@attribute:attribute(FWD)),
list(lustre@element:element(FWD))
) -> lustre@element:element(FWD).
nav(Attrs, Children) ->
lustre@element:h(<<"nav"/utf8>>, Attrs, Children).
-spec section(
list(lustre@attribute:attribute(FWJ)),
list(lustre@element:element(FWJ))
) -> lustre@element:element(FWJ).
section(Attrs, Children) ->
lustre@element:h(<<"section"/utf8>>, Attrs, Children).
-spec search(
list(lustre@attribute:attribute(FWP)),
list(lustre@element:element(FWP))
) -> lustre@element:element(FWP).
search(Attrs, Children) ->
lustre@element:h(<<"search"/utf8>>, Attrs, Children).
-spec blockquote(
list(lustre@attribute:attribute(FWV)),
list(lustre@element:element(FWV))
) -> lustre@element:element(FWV).
blockquote(Attrs, Children) ->
lustre@element:h(<<"blockquote"/utf8>>, Attrs, Children).
-spec dd(
list(lustre@attribute:attribute(FXB)),
list(lustre@element:element(FXB))
) -> lustre@element:element(FXB).
dd(Attrs, Children) ->
lustre@element:h(<<"dd"/utf8>>, Attrs, Children).
-spec 'div'(
list(lustre@attribute:attribute(FXH)),
list(lustre@element:element(FXH))
) -> lustre@element:element(FXH).
'div'(Attrs, Children) ->
lustre@element:h(<<"div"/utf8>>, Attrs, Children).
-spec dl(
list(lustre@attribute:attribute(FXN)),
list(lustre@element:element(FXN))
) -> lustre@element:element(FXN).
dl(Attrs, Children) ->
lustre@element:h(<<"dl"/utf8>>, Attrs, Children).
-spec dt(
list(lustre@attribute:attribute(FXT)),
list(lustre@element:element(FXT))
) -> lustre@element:element(FXT).
dt(Attrs, Children) ->
lustre@element:h(<<"dt"/utf8>>, Attrs, Children).
-spec figcaption(
list(lustre@attribute:attribute(FXZ)),
list(lustre@element:element(FXZ))
) -> lustre@element:element(FXZ).
figcaption(Attrs, Children) ->
lustre@element:h(<<"figcaption"/utf8>>, Attrs, Children).
-spec figure(
list(lustre@attribute:attribute(FYF)),
list(lustre@element:element(FYF))
) -> lustre@element:element(FYF).
figure(Attrs, Children) ->
lustre@element:h(<<"figure"/utf8>>, Attrs, Children).
-spec hr(list(lustre@attribute:attribute(FYL))) -> lustre@element:element(FYL).
hr(Attrs) ->
lustre@element:h(<<"hr"/utf8>>, Attrs, []).
-spec li(
list(lustre@attribute:attribute(FYP)),
list(lustre@element:element(FYP))
) -> lustre@element:element(FYP).
li(Attrs, Children) ->
lustre@element:h(<<"li"/utf8>>, Attrs, Children).
-spec menu(
list(lustre@attribute:attribute(FYV)),
list(lustre@element:element(FYV))
) -> lustre@element:element(FYV).
menu(Attrs, Children) ->
lustre@element:h(<<"menu"/utf8>>, Attrs, Children).
-spec ol(
list(lustre@attribute:attribute(FZB)),
list(lustre@element:element(FZB))
) -> lustre@element:element(FZB).
ol(Attrs, Children) ->
lustre@element:h(<<"ol"/utf8>>, Attrs, Children).
-spec p(
list(lustre@attribute:attribute(FZH)),
list(lustre@element:element(FZH))
) -> lustre@element:element(FZH).
p(Attrs, Children) ->
lustre@element:h(<<"p"/utf8>>, Attrs, Children).
-spec pre(
list(lustre@attribute:attribute(FZN)),
list(lustre@element:element(FZN))
) -> lustre@element:element(FZN).
pre(Attrs, Children) ->
lustre@element:h(<<"pre"/utf8>>, Attrs, Children).
-spec ul(
list(lustre@attribute:attribute(FZT)),
list(lustre@element:element(FZT))
) -> lustre@element:element(FZT).
ul(Attrs, Children) ->
lustre@element:h(<<"ul"/utf8>>, Attrs, Children).
-spec a(
list(lustre@attribute:attribute(FZZ)),
list(lustre@element:element(FZZ))
) -> lustre@element:element(FZZ).
a(Attrs, Children) ->
lustre@element:h(<<"a"/utf8>>, Attrs, Children).
-spec abbr(
list(lustre@attribute:attribute(GAF)),
list(lustre@element:element(GAF))
) -> lustre@element:element(GAF).
abbr(Attrs, Children) ->
lustre@element:h(<<"abbr"/utf8>>, Attrs, Children).
-spec b(
list(lustre@attribute:attribute(GAL)),
list(lustre@element:element(GAL))
) -> lustre@element:element(GAL).
b(Attrs, Children) ->
lustre@element:h(<<"b"/utf8>>, Attrs, Children).
-spec bdi(
list(lustre@attribute:attribute(GAR)),
list(lustre@element:element(GAR))
) -> lustre@element:element(GAR).
bdi(Attrs, Children) ->
lustre@element:h(<<"bdi"/utf8>>, Attrs, Children).
-spec bdo(
list(lustre@attribute:attribute(GAX)),
list(lustre@element:element(GAX))
) -> lustre@element:element(GAX).
bdo(Attrs, Children) ->
lustre@element:h(<<"bdo"/utf8>>, Attrs, Children).
-spec br(list(lustre@attribute:attribute(GBD))) -> lustre@element:element(GBD).
br(Attrs) ->
lustre@element:h(<<"br"/utf8>>, Attrs, []).
-spec cite(
list(lustre@attribute:attribute(GBH)),
list(lustre@element:element(GBH))
) -> lustre@element:element(GBH).
cite(Attrs, Children) ->
lustre@element:h(<<"cite"/utf8>>, Attrs, Children).
-spec code(
list(lustre@attribute:attribute(GBN)),
list(lustre@element:element(GBN))
) -> lustre@element:element(GBN).
code(Attrs, Children) ->
lustre@element:h(<<"code"/utf8>>, Attrs, Children).
-spec data(
list(lustre@attribute:attribute(GBT)),
list(lustre@element:element(GBT))
) -> lustre@element:element(GBT).
data(Attrs, Children) ->
lustre@element:h(<<"data"/utf8>>, Attrs, Children).
-spec dfn(
list(lustre@attribute:attribute(GBZ)),
list(lustre@element:element(GBZ))
) -> lustre@element:element(GBZ).
dfn(Attrs, Children) ->
lustre@element:h(<<"dfn"/utf8>>, Attrs, Children).
-spec em(
list(lustre@attribute:attribute(GCF)),
list(lustre@element:element(GCF))
) -> lustre@element:element(GCF).
em(Attrs, Children) ->
lustre@element:h(<<"em"/utf8>>, Attrs, Children).
-spec i(
list(lustre@attribute:attribute(GCL)),
list(lustre@element:element(GCL))
) -> lustre@element:element(GCL).
i(Attrs, Children) ->
lustre@element:h(<<"i"/utf8>>, Attrs, Children).
-spec kbd(
list(lustre@attribute:attribute(GCR)),
list(lustre@element:element(GCR))
) -> lustre@element:element(GCR).
kbd(Attrs, Children) ->
lustre@element:h(<<"kbd"/utf8>>, Attrs, Children).
-spec mark(
list(lustre@attribute:attribute(GCX)),
list(lustre@element:element(GCX))
) -> lustre@element:element(GCX).
mark(Attrs, Children) ->
lustre@element:h(<<"mark"/utf8>>, Attrs, Children).
-spec q(
list(lustre@attribute:attribute(GDD)),
list(lustre@element:element(GDD))
) -> lustre@element:element(GDD).
q(Attrs, Children) ->
lustre@element:h(<<"q"/utf8>>, Attrs, Children).
-spec rp(
list(lustre@attribute:attribute(GDJ)),
list(lustre@element:element(GDJ))
) -> lustre@element:element(GDJ).
rp(Attrs, Children) ->
lustre@element:h(<<"rp"/utf8>>, Attrs, Children).
-spec rt(
list(lustre@attribute:attribute(GDP)),
list(lustre@element:element(GDP))
) -> lustre@element:element(GDP).
rt(Attrs, Children) ->
lustre@element:h(<<"rt"/utf8>>, Attrs, Children).
-spec ruby(
list(lustre@attribute:attribute(GDV)),
list(lustre@element:element(GDV))
) -> lustre@element:element(GDV).
ruby(Attrs, Children) ->
lustre@element:h(<<"ruby"/utf8>>, Attrs, Children).
-spec s(
list(lustre@attribute:attribute(GEB)),
list(lustre@element:element(GEB))
) -> lustre@element:element(GEB).
s(Attrs, Children) ->
lustre@element:h(<<"s"/utf8>>, Attrs, Children).
-spec samp(
list(lustre@attribute:attribute(GEH)),
list(lustre@element:element(GEH))
) -> lustre@element:element(GEH).
samp(Attrs, Children) ->
lustre@element:h(<<"samp"/utf8>>, Attrs, Children).
-spec small(
list(lustre@attribute:attribute(GEN)),
list(lustre@element:element(GEN))
) -> lustre@element:element(GEN).
small(Attrs, Children) ->
lustre@element:h(<<"small"/utf8>>, Attrs, Children).
-spec span(
list(lustre@attribute:attribute(GET)),
list(lustre@element:element(GET))
) -> lustre@element:element(GET).
span(Attrs, Children) ->
lustre@element:h(<<"span"/utf8>>, Attrs, Children).
-spec strong(
list(lustre@attribute:attribute(GEZ)),
list(lustre@element:element(GEZ))
) -> lustre@element:element(GEZ).
strong(Attrs, Children) ->
lustre@element:h(<<"strong"/utf8>>, Attrs, Children).
-spec sub(
list(lustre@attribute:attribute(GFF)),
list(lustre@element:element(GFF))
) -> lustre@element:element(GFF).
sub(Attrs, Children) ->
lustre@element:h(<<"sub"/utf8>>, Attrs, Children).
-spec sup(
list(lustre@attribute:attribute(GFL)),
list(lustre@element:element(GFL))
) -> lustre@element:element(GFL).
sup(Attrs, Children) ->
lustre@element:h(<<"sup"/utf8>>, Attrs, Children).
-spec time(
list(lustre@attribute:attribute(GFR)),
list(lustre@element:element(GFR))
) -> lustre@element:element(GFR).
time(Attrs, Children) ->
lustre@element:h(<<"time"/utf8>>, Attrs, Children).
-spec u(
list(lustre@attribute:attribute(GFX)),
list(lustre@element:element(GFX))
) -> lustre@element:element(GFX).
u(Attrs, Children) ->
lustre@element:h(<<"u"/utf8>>, Attrs, Children).
-spec var(
list(lustre@attribute:attribute(GGD)),
list(lustre@element:element(GGD))
) -> lustre@element:element(GGD).
var(Attrs, Children) ->
lustre@element:h(<<"var"/utf8>>, Attrs, Children).
-spec wbr(list(lustre@attribute:attribute(GGJ))) -> lustre@element:element(GGJ).
wbr(Attrs) ->
lustre@element:h(<<"wbr"/utf8>>, Attrs, []).
-spec area(list(lustre@attribute:attribute(GGN))) -> lustre@element:element(GGN).
area(Attrs) ->
lustre@element:h(<<"area"/utf8>>, Attrs, []).
-spec audio(
list(lustre@attribute:attribute(GGR)),
list(lustre@element:element(GGR))
) -> lustre@element:element(GGR).
audio(Attrs, Children) ->
lustre@element:h(<<"audio"/utf8>>, Attrs, Children).
-spec img(list(lustre@attribute:attribute(GGX))) -> lustre@element:element(GGX).
img(Attrs) ->
lustre@element:h(<<"img"/utf8>>, Attrs, []).
-spec map(
list(lustre@attribute:attribute(GHB)),
list(lustre@element:element(GHB))
) -> lustre@element:element(GHB).
map(Attrs, Children) ->
lustre@element:h(<<"map"/utf8>>, Attrs, Children).
-spec track(list(lustre@attribute:attribute(GHH))) -> lustre@element:element(GHH).
track(Attrs) ->
lustre@element:h(<<"track"/utf8>>, Attrs, []).
-spec video(
list(lustre@attribute:attribute(GHL)),
list(lustre@element:element(GHL))
) -> lustre@element:element(GHL).
video(Attrs, Children) ->
lustre@element:h(<<"video"/utf8>>, Attrs, Children).
-spec embed(list(lustre@attribute:attribute(GHR))) -> lustre@element:element(GHR).
embed(Attrs) ->
lustre@element:h(<<"embed"/utf8>>, Attrs, []).
-spec iframe(list(lustre@attribute:attribute(GHV))) -> lustre@element:element(GHV).
iframe(Attrs) ->
lustre@element:h(<<"iframe"/utf8>>, Attrs, []).
-spec object(list(lustre@attribute:attribute(GHZ))) -> lustre@element:element(GHZ).
object(Attrs) ->
lustre@element:h(<<"object"/utf8>>, Attrs, []).
-spec picture(
list(lustre@attribute:attribute(GID)),
list(lustre@element:element(GID))
) -> lustre@element:element(GID).
picture(Attrs, Children) ->
lustre@element:h(<<"picture"/utf8>>, Attrs, Children).
-spec portal(list(lustre@attribute:attribute(GIJ))) -> lustre@element:element(GIJ).
portal(Attrs) ->
lustre@element:h(<<"portal"/utf8>>, Attrs, []).
-spec source(list(lustre@attribute:attribute(GIN))) -> lustre@element:element(GIN).
source(Attrs) ->
lustre@element:h(<<"source"/utf8>>, Attrs, []).
-spec svg(
list(lustre@attribute:attribute(GIR)),
list(lustre@element:element(GIR))
) -> lustre@element:element(GIR).
svg(Attrs, Children) ->
lustre@element:h(<<"svg"/utf8>>, Attrs, Children).
-spec math(
list(lustre@attribute:attribute(GIX)),
list(lustre@element:element(GIX))
) -> lustre@element:element(GIX).
math(Attrs, Children) ->
lustre@element:h(<<"math"/utf8>>, Attrs, Children).
-spec canvas(list(lustre@attribute:attribute(GJD))) -> lustre@element:element(GJD).
canvas(Attrs) ->
lustre@element:h(<<"canvas"/utf8>>, Attrs, []).
-spec noscript(
list(lustre@attribute:attribute(GJH)),
list(lustre@element:element(GJH))
) -> lustre@element:element(GJH).
noscript(Attrs, Children) ->
lustre@element:h(<<"noscript"/utf8>>, Attrs, Children).
-spec script(list(lustre@attribute:attribute(GJN)), binary()) -> lustre@element:element(GJN).
script(Attrs, Js) ->
lustre@element:h(<<"script"/utf8>>, Attrs, [lustre@element:t(Js)]).
-spec del(
list(lustre@attribute:attribute(GJR)),
list(lustre@element:element(GJR))
) -> lustre@element:element(GJR).
del(Attrs, Children) ->
lustre@element:h(<<"del"/utf8>>, Attrs, Children).
-spec ins(
list(lustre@attribute:attribute(GJX)),
list(lustre@element:element(GJX))
) -> lustre@element:element(GJX).
ins(Attrs, Children) ->
lustre@element:h(<<"ins"/utf8>>, Attrs, Children).
-spec caption(
list(lustre@attribute:attribute(GKD)),
list(lustre@element:element(GKD))
) -> lustre@element:element(GKD).
caption(Attrs, Children) ->
lustre@element:h(<<"caption"/utf8>>, Attrs, Children).
-spec col(list(lustre@attribute:attribute(GKJ))) -> lustre@element:element(GKJ).
col(Attrs) ->
lustre@element:h(<<"col"/utf8>>, Attrs, []).
-spec colgroup(
list(lustre@attribute:attribute(GKN)),
list(lustre@element:element(GKN))
) -> lustre@element:element(GKN).
colgroup(Attrs, Children) ->
lustre@element:h(<<"colgroup"/utf8>>, Attrs, Children).
-spec table(
list(lustre@attribute:attribute(GKT)),
list(lustre@element:element(GKT))
) -> lustre@element:element(GKT).
table(Attrs, Children) ->
lustre@element:h(<<"table"/utf8>>, Attrs, Children).
-spec tbody(
list(lustre@attribute:attribute(GKZ)),
list(lustre@element:element(GKZ))
) -> lustre@element:element(GKZ).
tbody(Attrs, Children) ->
lustre@element:h(<<"tbody"/utf8>>, Attrs, Children).
-spec td(
list(lustre@attribute:attribute(GLF)),
list(lustre@element:element(GLF))
) -> lustre@element:element(GLF).
td(Attrs, Children) ->
lustre@element:h(<<"td"/utf8>>, Attrs, Children).
-spec tfoot(
list(lustre@attribute:attribute(GLL)),
list(lustre@element:element(GLL))
) -> lustre@element:element(GLL).
tfoot(Attrs, Children) ->
lustre@element:h(<<"tfoot"/utf8>>, Attrs, Children).
-spec th(
list(lustre@attribute:attribute(GLR)),
list(lustre@element:element(GLR))
) -> lustre@element:element(GLR).
th(Attrs, Children) ->
lustre@element:h(<<"th"/utf8>>, Attrs, Children).
-spec thead(
list(lustre@attribute:attribute(GLX)),
list(lustre@element:element(GLX))
) -> lustre@element:element(GLX).
thead(Attrs, Children) ->
lustre@element:h(<<"thead"/utf8>>, Attrs, Children).
-spec tr(
list(lustre@attribute:attribute(GMD)),
list(lustre@element:element(GMD))
) -> lustre@element:element(GMD).
tr(Attrs, Children) ->
lustre@element:h(<<"tr"/utf8>>, Attrs, Children).
-spec button(
list(lustre@attribute:attribute(GMJ)),
list(lustre@element:element(GMJ))
) -> lustre@element:element(GMJ).
button(Attrs, Children) ->
lustre@element:h(<<"button"/utf8>>, Attrs, Children).
-spec datalist(
list(lustre@attribute:attribute(GMP)),
list(lustre@element:element(GMP))
) -> lustre@element:element(GMP).
datalist(Attrs, Children) ->
lustre@element:h(<<"datalist"/utf8>>, Attrs, Children).
-spec fieldset(
list(lustre@attribute:attribute(GMV)),
list(lustre@element:element(GMV))
) -> lustre@element:element(GMV).
fieldset(Attrs, Children) ->
lustre@element:h(<<"fieldset"/utf8>>, Attrs, Children).
-spec form(
list(lustre@attribute:attribute(GNB)),
list(lustre@element:element(GNB))
) -> lustre@element:element(GNB).
form(Attrs, Children) ->
lustre@element:h(<<"form"/utf8>>, Attrs, Children).
-spec input(list(lustre@attribute:attribute(GNH))) -> lustre@element:element(GNH).
input(Attrs) ->
lustre@element:h(<<"input"/utf8>>, Attrs, []).
-spec label(
list(lustre@attribute:attribute(GNL)),
list(lustre@element:element(GNL))
) -> lustre@element:element(GNL).
label(Attrs, Children) ->
lustre@element:h(<<"label"/utf8>>, Attrs, Children).
-spec legend(
list(lustre@attribute:attribute(GNR)),
list(lustre@element:element(GNR))
) -> lustre@element:element(GNR).
legend(Attrs, Children) ->
lustre@element:h(<<"legend"/utf8>>, Attrs, Children).
-spec meter(
list(lustre@attribute:attribute(GNX)),
list(lustre@element:element(GNX))
) -> lustre@element:element(GNX).
meter(Attrs, Children) ->
lustre@element:h(<<"meter"/utf8>>, Attrs, Children).
-spec optgroup(
list(lustre@attribute:attribute(GOD)),
list(lustre@element:element(GOD))
) -> lustre@element:element(GOD).
optgroup(Attrs, Children) ->
lustre@element:h(<<"optgroup"/utf8>>, Attrs, Children).
-spec option(list(lustre@attribute:attribute(GOJ))) -> lustre@element:element(GOJ).
option(Attrs) ->
lustre@element:h(<<"option"/utf8>>, Attrs, []).
-spec output(
list(lustre@attribute:attribute(GON)),
list(lustre@element:element(GON))
) -> lustre@element:element(GON).
output(Attrs, Children) ->
lustre@element:h(<<"output"/utf8>>, Attrs, Children).
-spec progress(
list(lustre@attribute:attribute(GOT)),
list(lustre@element:element(GOT))
) -> lustre@element:element(GOT).
progress(Attrs, Children) ->
lustre@element:h(<<"progress"/utf8>>, Attrs, Children).
-spec select(
list(lustre@attribute:attribute(GOZ)),
list(lustre@element:element(GOZ))
) -> lustre@element:element(GOZ).
select(Attrs, Children) ->
lustre@element:h(<<"select"/utf8>>, Attrs, Children).
-spec textarea(list(lustre@attribute:attribute(GPF))) -> lustre@element:element(GPF).
textarea(Attrs) ->
lustre@element:h(<<"textarea"/utf8>>, Attrs, []).
-spec details(
list(lustre@attribute:attribute(GPJ)),
list(lustre@element:element(GPJ))
) -> lustre@element:element(GPJ).
details(Attrs, Children) ->
lustre@element:h(<<"details"/utf8>>, Attrs, Children).
-spec dialog(
list(lustre@attribute:attribute(GPP)),
list(lustre@element:element(GPP))
) -> lustre@element:element(GPP).
dialog(Attrs, Children) ->
lustre@element:h(<<"dialog"/utf8>>, Attrs, Children).
-spec summary(
list(lustre@attribute:attribute(GPV)),
list(lustre@element:element(GPV))
) -> lustre@element:element(GPV).
summary(Attrs, Children) ->
lustre@element:h(<<"summary"/utf8>>, Attrs, Children).
-spec slot(list(lustre@attribute:attribute(GQB))) -> lustre@element:element(GQB).
slot(Attrs) ->
lustre@element:h(<<"slot"/utf8>>, Attrs, []).
-spec template(
list(lustre@attribute:attribute(GQF)),
list(lustre@element:element(GQF))
) -> lustre@element:element(GQF).
template(Attrs, Children) ->
lustre@element:h(<<"template"/utf8>>, Attrs, Children).