-module(lustre@element@html). -compile([no_auto_import, nowarn_unused_vars, nowarn_unused_function, nowarn_nomatch]). -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(GPO)), list(lustre@element:element(GPO)) ) -> lustre@element:element(GPO). html(Attrs, Children) -> lustre@element:element(<<"html"/utf8>>, Attrs, Children). -spec base(list(lustre@attribute:attribute(GPU))) -> lustre@element:element(GPU). base(Attrs) -> lustre@element:element(<<"base"/utf8>>, Attrs, []). -spec head( list(lustre@attribute:attribute(GPY)), list(lustre@element:element(GPY)) ) -> lustre@element:element(GPY). head(Attrs, Children) -> lustre@element:element(<<"head"/utf8>>, Attrs, Children). -spec link(list(lustre@attribute:attribute(GQE))) -> lustre@element:element(GQE). link(Attrs) -> lustre@element:element(<<"link"/utf8>>, Attrs, []). -spec meta(list(lustre@attribute:attribute(GQI))) -> lustre@element:element(GQI). meta(Attrs) -> lustre@element:element(<<"meta"/utf8>>, Attrs, []). -spec style(list(lustre@attribute:attribute(GQM)), binary()) -> lustre@element:element(GQM). style(Attrs, Css) -> lustre@element:element(<<"style"/utf8>>, Attrs, [lustre@element:text(Css)]). -spec title(list(lustre@attribute:attribute(GQQ)), binary()) -> lustre@element:element(GQQ). title(Attrs, Content) -> lustre@element:element( <<"title"/utf8>>, Attrs, [lustre@element:text(Content)] ). -spec body( list(lustre@attribute:attribute(GQU)), list(lustre@element:element(GQU)) ) -> lustre@element:element(GQU). body(Attrs, Children) -> lustre@element:element(<<"body"/utf8>>, Attrs, Children). -spec address( list(lustre@attribute:attribute(GRA)), list(lustre@element:element(GRA)) ) -> lustre@element:element(GRA). address(Attrs, Children) -> lustre@element:element(<<"address"/utf8>>, Attrs, Children). -spec article( list(lustre@attribute:attribute(GRG)), list(lustre@element:element(GRG)) ) -> lustre@element:element(GRG). article(Attrs, Children) -> lustre@element:element(<<"article"/utf8>>, Attrs, Children). -spec aside( list(lustre@attribute:attribute(GRM)), list(lustre@element:element(GRM)) ) -> lustre@element:element(GRM). aside(Attrs, Children) -> lustre@element:element(<<"aside"/utf8>>, Attrs, Children). -spec footer( list(lustre@attribute:attribute(GRS)), list(lustre@element:element(GRS)) ) -> lustre@element:element(GRS). footer(Attrs, Children) -> lustre@element:element(<<"footer"/utf8>>, Attrs, Children). -spec header( list(lustre@attribute:attribute(GRY)), list(lustre@element:element(GRY)) ) -> lustre@element:element(GRY). header(Attrs, Children) -> lustre@element:element(<<"header"/utf8>>, Attrs, Children). -spec h1( list(lustre@attribute:attribute(GSE)), list(lustre@element:element(GSE)) ) -> lustre@element:element(GSE). h1(Attrs, Children) -> lustre@element:element(<<"h1"/utf8>>, Attrs, Children). -spec h2( list(lustre@attribute:attribute(GSK)), list(lustre@element:element(GSK)) ) -> lustre@element:element(GSK). h2(Attrs, Children) -> lustre@element:element(<<"h2"/utf8>>, Attrs, Children). -spec h3( list(lustre@attribute:attribute(GSQ)), list(lustre@element:element(GSQ)) ) -> lustre@element:element(GSQ). h3(Attrs, Children) -> lustre@element:element(<<"h3"/utf8>>, Attrs, Children). -spec h4( list(lustre@attribute:attribute(GSW)), list(lustre@element:element(GSW)) ) -> lustre@element:element(GSW). h4(Attrs, Children) -> lustre@element:element(<<"h4"/utf8>>, Attrs, Children). -spec h5( list(lustre@attribute:attribute(GTC)), list(lustre@element:element(GTC)) ) -> lustre@element:element(GTC). h5(Attrs, Children) -> lustre@element:element(<<"h5"/utf8>>, Attrs, Children). -spec h6( list(lustre@attribute:attribute(GTI)), list(lustre@element:element(GTI)) ) -> lustre@element:element(GTI). h6(Attrs, Children) -> lustre@element:element(<<"h6"/utf8>>, Attrs, Children). -spec hgroup( list(lustre@attribute:attribute(GTO)), list(lustre@element:element(GTO)) ) -> lustre@element:element(GTO). hgroup(Attrs, Children) -> lustre@element:element(<<"hgroup"/utf8>>, Attrs, Children). -spec main( list(lustre@attribute:attribute(GTU)), list(lustre@element:element(GTU)) ) -> lustre@element:element(GTU). main(Attrs, Children) -> lustre@element:element(<<"main"/utf8>>, Attrs, Children). -spec nav( list(lustre@attribute:attribute(GUA)), list(lustre@element:element(GUA)) ) -> lustre@element:element(GUA). nav(Attrs, Children) -> lustre@element:element(<<"nav"/utf8>>, Attrs, Children). -spec section( list(lustre@attribute:attribute(GUG)), list(lustre@element:element(GUG)) ) -> lustre@element:element(GUG). section(Attrs, Children) -> lustre@element:element(<<"section"/utf8>>, Attrs, Children). -spec search( list(lustre@attribute:attribute(GUM)), list(lustre@element:element(GUM)) ) -> lustre@element:element(GUM). search(Attrs, Children) -> lustre@element:element(<<"search"/utf8>>, Attrs, Children). -spec blockquote( list(lustre@attribute:attribute(GUS)), list(lustre@element:element(GUS)) ) -> lustre@element:element(GUS). blockquote(Attrs, Children) -> lustre@element:element(<<"blockquote"/utf8>>, Attrs, Children). -spec dd( list(lustre@attribute:attribute(GUY)), list(lustre@element:element(GUY)) ) -> lustre@element:element(GUY). dd(Attrs, Children) -> lustre@element:element(<<"dd"/utf8>>, Attrs, Children). -spec 'div'( list(lustre@attribute:attribute(GVE)), list(lustre@element:element(GVE)) ) -> lustre@element:element(GVE). 'div'(Attrs, Children) -> lustre@element:element(<<"div"/utf8>>, Attrs, Children). -spec dl( list(lustre@attribute:attribute(GVK)), list(lustre@element:element(GVK)) ) -> lustre@element:element(GVK). dl(Attrs, Children) -> lustre@element:element(<<"dl"/utf8>>, Attrs, Children). -spec dt( list(lustre@attribute:attribute(GVQ)), list(lustre@element:element(GVQ)) ) -> lustre@element:element(GVQ). dt(Attrs, Children) -> lustre@element:element(<<"dt"/utf8>>, Attrs, Children). -spec figcaption( list(lustre@attribute:attribute(GVW)), list(lustre@element:element(GVW)) ) -> lustre@element:element(GVW). figcaption(Attrs, Children) -> lustre@element:element(<<"figcaption"/utf8>>, Attrs, Children). -spec figure( list(lustre@attribute:attribute(GWC)), list(lustre@element:element(GWC)) ) -> lustre@element:element(GWC). figure(Attrs, Children) -> lustre@element:element(<<"figure"/utf8>>, Attrs, Children). -spec hr(list(lustre@attribute:attribute(GWI))) -> lustre@element:element(GWI). hr(Attrs) -> lustre@element:element(<<"hr"/utf8>>, Attrs, []). -spec li( list(lustre@attribute:attribute(GWM)), list(lustre@element:element(GWM)) ) -> lustre@element:element(GWM). li(Attrs, Children) -> lustre@element:element(<<"li"/utf8>>, Attrs, Children). -spec menu( list(lustre@attribute:attribute(GWS)), list(lustre@element:element(GWS)) ) -> lustre@element:element(GWS). menu(Attrs, Children) -> lustre@element:element(<<"menu"/utf8>>, Attrs, Children). -spec ol( list(lustre@attribute:attribute(GWY)), list(lustre@element:element(GWY)) ) -> lustre@element:element(GWY). ol(Attrs, Children) -> lustre@element:element(<<"ol"/utf8>>, Attrs, Children). -spec p( list(lustre@attribute:attribute(GXE)), list(lustre@element:element(GXE)) ) -> lustre@element:element(GXE). p(Attrs, Children) -> lustre@element:element(<<"p"/utf8>>, Attrs, Children). -spec pre( list(lustre@attribute:attribute(GXK)), list(lustre@element:element(GXK)) ) -> lustre@element:element(GXK). pre(Attrs, Children) -> lustre@element:element(<<"pre"/utf8>>, Attrs, Children). -spec ul( list(lustre@attribute:attribute(GXQ)), list(lustre@element:element(GXQ)) ) -> lustre@element:element(GXQ). ul(Attrs, Children) -> lustre@element:element(<<"ul"/utf8>>, Attrs, Children). -spec a( list(lustre@attribute:attribute(GXW)), list(lustre@element:element(GXW)) ) -> lustre@element:element(GXW). a(Attrs, Children) -> lustre@element:element(<<"a"/utf8>>, Attrs, Children). -spec abbr( list(lustre@attribute:attribute(GYC)), list(lustre@element:element(GYC)) ) -> lustre@element:element(GYC). abbr(Attrs, Children) -> lustre@element:element(<<"abbr"/utf8>>, Attrs, Children). -spec b( list(lustre@attribute:attribute(GYI)), list(lustre@element:element(GYI)) ) -> lustre@element:element(GYI). b(Attrs, Children) -> lustre@element:element(<<"b"/utf8>>, Attrs, Children). -spec bdi( list(lustre@attribute:attribute(GYO)), list(lustre@element:element(GYO)) ) -> lustre@element:element(GYO). bdi(Attrs, Children) -> lustre@element:element(<<"bdi"/utf8>>, Attrs, Children). -spec bdo( list(lustre@attribute:attribute(GYU)), list(lustre@element:element(GYU)) ) -> lustre@element:element(GYU). bdo(Attrs, Children) -> lustre@element:element(<<"bdo"/utf8>>, Attrs, Children). -spec br(list(lustre@attribute:attribute(GZA))) -> lustre@element:element(GZA). br(Attrs) -> lustre@element:element(<<"br"/utf8>>, Attrs, []). -spec cite( list(lustre@attribute:attribute(GZE)), list(lustre@element:element(GZE)) ) -> lustre@element:element(GZE). cite(Attrs, Children) -> lustre@element:element(<<"cite"/utf8>>, Attrs, Children). -spec code( list(lustre@attribute:attribute(GZK)), list(lustre@element:element(GZK)) ) -> lustre@element:element(GZK). code(Attrs, Children) -> lustre@element:element(<<"code"/utf8>>, Attrs, Children). -spec data( list(lustre@attribute:attribute(GZQ)), list(lustre@element:element(GZQ)) ) -> lustre@element:element(GZQ). data(Attrs, Children) -> lustre@element:element(<<"data"/utf8>>, Attrs, Children). -spec dfn( list(lustre@attribute:attribute(GZW)), list(lustre@element:element(GZW)) ) -> lustre@element:element(GZW). dfn(Attrs, Children) -> lustre@element:element(<<"dfn"/utf8>>, Attrs, Children). -spec em( list(lustre@attribute:attribute(HAC)), list(lustre@element:element(HAC)) ) -> lustre@element:element(HAC). em(Attrs, Children) -> lustre@element:element(<<"em"/utf8>>, Attrs, Children). -spec i( list(lustre@attribute:attribute(HAI)), list(lustre@element:element(HAI)) ) -> lustre@element:element(HAI). i(Attrs, Children) -> lustre@element:element(<<"i"/utf8>>, Attrs, Children). -spec kbd( list(lustre@attribute:attribute(HAO)), list(lustre@element:element(HAO)) ) -> lustre@element:element(HAO). kbd(Attrs, Children) -> lustre@element:element(<<"kbd"/utf8>>, Attrs, Children). -spec mark( list(lustre@attribute:attribute(HAU)), list(lustre@element:element(HAU)) ) -> lustre@element:element(HAU). mark(Attrs, Children) -> lustre@element:element(<<"mark"/utf8>>, Attrs, Children). -spec q( list(lustre@attribute:attribute(HBA)), list(lustre@element:element(HBA)) ) -> lustre@element:element(HBA). q(Attrs, Children) -> lustre@element:element(<<"q"/utf8>>, Attrs, Children). -spec rp( list(lustre@attribute:attribute(HBG)), list(lustre@element:element(HBG)) ) -> lustre@element:element(HBG). rp(Attrs, Children) -> lustre@element:element(<<"rp"/utf8>>, Attrs, Children). -spec rt( list(lustre@attribute:attribute(HBM)), list(lustre@element:element(HBM)) ) -> lustre@element:element(HBM). rt(Attrs, Children) -> lustre@element:element(<<"rt"/utf8>>, Attrs, Children). -spec ruby( list(lustre@attribute:attribute(HBS)), list(lustre@element:element(HBS)) ) -> lustre@element:element(HBS). ruby(Attrs, Children) -> lustre@element:element(<<"ruby"/utf8>>, Attrs, Children). -spec s( list(lustre@attribute:attribute(HBY)), list(lustre@element:element(HBY)) ) -> lustre@element:element(HBY). s(Attrs, Children) -> lustre@element:element(<<"s"/utf8>>, Attrs, Children). -spec samp( list(lustre@attribute:attribute(HCE)), list(lustre@element:element(HCE)) ) -> lustre@element:element(HCE). samp(Attrs, Children) -> lustre@element:element(<<"samp"/utf8>>, Attrs, Children). -spec small( list(lustre@attribute:attribute(HCK)), list(lustre@element:element(HCK)) ) -> lustre@element:element(HCK). small(Attrs, Children) -> lustre@element:element(<<"small"/utf8>>, Attrs, Children). -spec span( list(lustre@attribute:attribute(HCQ)), list(lustre@element:element(HCQ)) ) -> lustre@element:element(HCQ). span(Attrs, Children) -> lustre@element:element(<<"span"/utf8>>, Attrs, Children). -spec strong( list(lustre@attribute:attribute(HCW)), list(lustre@element:element(HCW)) ) -> lustre@element:element(HCW). strong(Attrs, Children) -> lustre@element:element(<<"strong"/utf8>>, Attrs, Children). -spec sub( list(lustre@attribute:attribute(HDC)), list(lustre@element:element(HDC)) ) -> lustre@element:element(HDC). sub(Attrs, Children) -> lustre@element:element(<<"sub"/utf8>>, Attrs, Children). -spec sup( list(lustre@attribute:attribute(HDI)), list(lustre@element:element(HDI)) ) -> lustre@element:element(HDI). sup(Attrs, Children) -> lustre@element:element(<<"sup"/utf8>>, Attrs, Children). -spec time( list(lustre@attribute:attribute(HDO)), list(lustre@element:element(HDO)) ) -> lustre@element:element(HDO). time(Attrs, Children) -> lustre@element:element(<<"time"/utf8>>, Attrs, Children). -spec u( list(lustre@attribute:attribute(HDU)), list(lustre@element:element(HDU)) ) -> lustre@element:element(HDU). u(Attrs, Children) -> lustre@element:element(<<"u"/utf8>>, Attrs, Children). -spec var( list(lustre@attribute:attribute(HEA)), list(lustre@element:element(HEA)) ) -> lustre@element:element(HEA). var(Attrs, Children) -> lustre@element:element(<<"var"/utf8>>, Attrs, Children). -spec wbr(list(lustre@attribute:attribute(HEG))) -> lustre@element:element(HEG). wbr(Attrs) -> lustre@element:element(<<"wbr"/utf8>>, Attrs, []). -spec area(list(lustre@attribute:attribute(HEK))) -> lustre@element:element(HEK). area(Attrs) -> lustre@element:element(<<"area"/utf8>>, Attrs, []). -spec audio( list(lustre@attribute:attribute(HEO)), list(lustre@element:element(HEO)) ) -> lustre@element:element(HEO). audio(Attrs, Children) -> lustre@element:element(<<"audio"/utf8>>, Attrs, Children). -spec img(list(lustre@attribute:attribute(HEU))) -> lustre@element:element(HEU). img(Attrs) -> lustre@element:element(<<"img"/utf8>>, Attrs, []). -spec map( list(lustre@attribute:attribute(HEY)), list(lustre@element:element(HEY)) ) -> lustre@element:element(HEY). map(Attrs, Children) -> lustre@element:element(<<"map"/utf8>>, Attrs, Children). -spec track(list(lustre@attribute:attribute(HFE))) -> lustre@element:element(HFE). track(Attrs) -> lustre@element:element(<<"track"/utf8>>, Attrs, []). -spec video( list(lustre@attribute:attribute(HFI)), list(lustre@element:element(HFI)) ) -> lustre@element:element(HFI). video(Attrs, Children) -> lustre@element:element(<<"video"/utf8>>, Attrs, Children). -spec embed(list(lustre@attribute:attribute(HFO))) -> lustre@element:element(HFO). embed(Attrs) -> lustre@element:element(<<"embed"/utf8>>, Attrs, []). -spec iframe(list(lustre@attribute:attribute(HFS))) -> lustre@element:element(HFS). iframe(Attrs) -> lustre@element:element(<<"iframe"/utf8>>, Attrs, []). -spec object(list(lustre@attribute:attribute(HFW))) -> lustre@element:element(HFW). object(Attrs) -> lustre@element:element(<<"object"/utf8>>, Attrs, []). -spec picture( list(lustre@attribute:attribute(HGA)), list(lustre@element:element(HGA)) ) -> lustre@element:element(HGA). picture(Attrs, Children) -> lustre@element:element(<<"picture"/utf8>>, Attrs, Children). -spec portal(list(lustre@attribute:attribute(HGG))) -> lustre@element:element(HGG). portal(Attrs) -> lustre@element:element(<<"portal"/utf8>>, Attrs, []). -spec source(list(lustre@attribute:attribute(HGK))) -> lustre@element:element(HGK). source(Attrs) -> lustre@element:element(<<"source"/utf8>>, Attrs, []). -spec svg( list(lustre@attribute:attribute(HGO)), list(lustre@element:element(HGO)) ) -> lustre@element:element(HGO). svg(Attrs, Children) -> lustre@element:namespaced( <<"http://www.w3.org/2000/svg"/utf8>>, <<"svg"/utf8>>, Attrs, Children ). -spec math( list(lustre@attribute:attribute(HGU)), list(lustre@element:element(HGU)) ) -> lustre@element:element(HGU). math(Attrs, Children) -> lustre@element:element(<<"math"/utf8>>, Attrs, Children). -spec canvas(list(lustre@attribute:attribute(HHA))) -> lustre@element:element(HHA). canvas(Attrs) -> lustre@element:element(<<"canvas"/utf8>>, Attrs, []). -spec noscript( list(lustre@attribute:attribute(HHE)), list(lustre@element:element(HHE)) ) -> lustre@element:element(HHE). noscript(Attrs, Children) -> lustre@element:element(<<"noscript"/utf8>>, Attrs, Children). -spec script(list(lustre@attribute:attribute(HHK)), binary()) -> lustre@element:element(HHK). script(Attrs, Js) -> lustre@element:element(<<"script"/utf8>>, Attrs, [lustre@element:text(Js)]). -spec del( list(lustre@attribute:attribute(HHO)), list(lustre@element:element(HHO)) ) -> lustre@element:element(HHO). del(Attrs, Children) -> lustre@element:element(<<"del"/utf8>>, Attrs, Children). -spec ins( list(lustre@attribute:attribute(HHU)), list(lustre@element:element(HHU)) ) -> lustre@element:element(HHU). ins(Attrs, Children) -> lustre@element:element(<<"ins"/utf8>>, Attrs, Children). -spec caption( list(lustre@attribute:attribute(HIA)), list(lustre@element:element(HIA)) ) -> lustre@element:element(HIA). caption(Attrs, Children) -> lustre@element:element(<<"caption"/utf8>>, Attrs, Children). -spec col(list(lustre@attribute:attribute(HIG))) -> lustre@element:element(HIG). col(Attrs) -> lustre@element:element(<<"col"/utf8>>, Attrs, []). -spec colgroup( list(lustre@attribute:attribute(HIK)), list(lustre@element:element(HIK)) ) -> lustre@element:element(HIK). colgroup(Attrs, Children) -> lustre@element:element(<<"colgroup"/utf8>>, Attrs, Children). -spec table( list(lustre@attribute:attribute(HIQ)), list(lustre@element:element(HIQ)) ) -> lustre@element:element(HIQ). table(Attrs, Children) -> lustre@element:element(<<"table"/utf8>>, Attrs, Children). -spec tbody( list(lustre@attribute:attribute(HIW)), list(lustre@element:element(HIW)) ) -> lustre@element:element(HIW). tbody(Attrs, Children) -> lustre@element:element(<<"tbody"/utf8>>, Attrs, Children). -spec td( list(lustre@attribute:attribute(HJC)), list(lustre@element:element(HJC)) ) -> lustre@element:element(HJC). td(Attrs, Children) -> lustre@element:element(<<"td"/utf8>>, Attrs, Children). -spec tfoot( list(lustre@attribute:attribute(HJI)), list(lustre@element:element(HJI)) ) -> lustre@element:element(HJI). tfoot(Attrs, Children) -> lustre@element:element(<<"tfoot"/utf8>>, Attrs, Children). -spec th( list(lustre@attribute:attribute(HJO)), list(lustre@element:element(HJO)) ) -> lustre@element:element(HJO). th(Attrs, Children) -> lustre@element:element(<<"th"/utf8>>, Attrs, Children). -spec thead( list(lustre@attribute:attribute(HJU)), list(lustre@element:element(HJU)) ) -> lustre@element:element(HJU). thead(Attrs, Children) -> lustre@element:element(<<"thead"/utf8>>, Attrs, Children). -spec tr( list(lustre@attribute:attribute(HKA)), list(lustre@element:element(HKA)) ) -> lustre@element:element(HKA). tr(Attrs, Children) -> lustre@element:element(<<"tr"/utf8>>, Attrs, Children). -spec button( list(lustre@attribute:attribute(HKG)), list(lustre@element:element(HKG)) ) -> lustre@element:element(HKG). button(Attrs, Children) -> lustre@element:element(<<"button"/utf8>>, Attrs, Children). -spec datalist( list(lustre@attribute:attribute(HKM)), list(lustre@element:element(HKM)) ) -> lustre@element:element(HKM). datalist(Attrs, Children) -> lustre@element:element(<<"datalist"/utf8>>, Attrs, Children). -spec fieldset( list(lustre@attribute:attribute(HKS)), list(lustre@element:element(HKS)) ) -> lustre@element:element(HKS). fieldset(Attrs, Children) -> lustre@element:element(<<"fieldset"/utf8>>, Attrs, Children). -spec form( list(lustre@attribute:attribute(HKY)), list(lustre@element:element(HKY)) ) -> lustre@element:element(HKY). form(Attrs, Children) -> lustre@element:element(<<"form"/utf8>>, Attrs, Children). -spec input(list(lustre@attribute:attribute(HLE))) -> lustre@element:element(HLE). input(Attrs) -> lustre@element:element(<<"input"/utf8>>, Attrs, []). -spec label( list(lustre@attribute:attribute(HLI)), list(lustre@element:element(HLI)) ) -> lustre@element:element(HLI). label(Attrs, Children) -> lustre@element:element(<<"label"/utf8>>, Attrs, Children). -spec legend( list(lustre@attribute:attribute(HLO)), list(lustre@element:element(HLO)) ) -> lustre@element:element(HLO). legend(Attrs, Children) -> lustre@element:element(<<"legend"/utf8>>, Attrs, Children). -spec meter( list(lustre@attribute:attribute(HLU)), list(lustre@element:element(HLU)) ) -> lustre@element:element(HLU). meter(Attrs, Children) -> lustre@element:element(<<"meter"/utf8>>, Attrs, Children). -spec optgroup( list(lustre@attribute:attribute(HMA)), list(lustre@element:element(HMA)) ) -> lustre@element:element(HMA). optgroup(Attrs, Children) -> lustre@element:element(<<"optgroup"/utf8>>, Attrs, Children). -spec option(list(lustre@attribute:attribute(HMG))) -> lustre@element:element(HMG). option(Attrs) -> lustre@element:element(<<"option"/utf8>>, Attrs, []). -spec output( list(lustre@attribute:attribute(HMK)), list(lustre@element:element(HMK)) ) -> lustre@element:element(HMK). output(Attrs, Children) -> lustre@element:element(<<"output"/utf8>>, Attrs, Children). -spec progress( list(lustre@attribute:attribute(HMQ)), list(lustre@element:element(HMQ)) ) -> lustre@element:element(HMQ). progress(Attrs, Children) -> lustre@element:element(<<"progress"/utf8>>, Attrs, Children). -spec select( list(lustre@attribute:attribute(HMW)), list(lustre@element:element(HMW)) ) -> lustre@element:element(HMW). select(Attrs, Children) -> lustre@element:element(<<"select"/utf8>>, Attrs, Children). -spec textarea(list(lustre@attribute:attribute(HNC))) -> lustre@element:element(HNC). textarea(Attrs) -> lustre@element:element(<<"textarea"/utf8>>, Attrs, []). -spec details( list(lustre@attribute:attribute(HNG)), list(lustre@element:element(HNG)) ) -> lustre@element:element(HNG). details(Attrs, Children) -> lustre@element:element(<<"details"/utf8>>, Attrs, Children). -spec dialog( list(lustre@attribute:attribute(HNM)), list(lustre@element:element(HNM)) ) -> lustre@element:element(HNM). dialog(Attrs, Children) -> lustre@element:element(<<"dialog"/utf8>>, Attrs, Children). -spec summary( list(lustre@attribute:attribute(HNS)), list(lustre@element:element(HNS)) ) -> lustre@element:element(HNS). summary(Attrs, Children) -> lustre@element:element(<<"summary"/utf8>>, Attrs, Children). -spec slot(list(lustre@attribute:attribute(HNY))) -> lustre@element:element(HNY). slot(Attrs) -> lustre@element:element(<<"slot"/utf8>>, Attrs, []). -spec template( list(lustre@attribute:attribute(HOC)), list(lustre@element:element(HOC)) ) -> lustre@element:element(HOC). template(Attrs, Children) -> lustre@element:element(<<"template"/utf8>>, Attrs, Children).