-module(agnostic@element@mathml). -compile([no_auto_import, nowarn_unused_vars, nowarn_unused_function, nowarn_nomatch, inline]). -define(FILEPATH, "src/agnostic/element/mathml.gleam"). -export([merror/2, mphantom/2, mprescripts/2, mrow/2, mstyle/2, semantics/2, mmultiscripts/2, mover/2, msub/2, msubsup/2, msup/2, munder/2, munderover/2, mroot/2, msqrt/2, annotation/2, annotation_xml/2, mfrac/2, mn/2, mo/2, mi/2, mpadded/2, ms/2, mspace/1, mtable/2, mtd/2, mtext/2, mtr/2]). -if(?OTP_RELEASE >= 27). -define(MODULEDOC(Str), -moduledoc(Str)). -define(DOC(Str), -doc(Str)). -else. -define(MODULEDOC(Str), -compile([])). -define(DOC(Str), -compile([])). -endif. -file("src/agnostic/element/mathml.gleam", 23). ?DOC("\n"). -spec merror( list(agnostic@vdom@vattr:attribute(OJH)), list(agnostic@vdom@vnode:element(OJH)) ) -> agnostic@vdom@vnode:element(OJH). merror(Attrs, Children) -> agnostic@element:namespaced( <<"http://www.w3.org/1998/Math/MathML"/utf8>>, <<"merror"/utf8>>, Attrs, Children ). -file("src/agnostic/element/mathml.gleam", 31). ?DOC("\n"). -spec mphantom( list(agnostic@vdom@vattr:attribute(OJN)), list(agnostic@vdom@vnode:element(OJN)) ) -> agnostic@vdom@vnode:element(OJN). mphantom(Attrs, Children) -> agnostic@element:namespaced( <<"http://www.w3.org/1998/Math/MathML"/utf8>>, <<"mphantom"/utf8>>, Attrs, Children ). -file("src/agnostic/element/mathml.gleam", 39). ?DOC("\n"). -spec mprescripts( list(agnostic@vdom@vattr:attribute(OJT)), list(agnostic@vdom@vnode:element(OJT)) ) -> agnostic@vdom@vnode:element(OJT). mprescripts(Attrs, Children) -> agnostic@element:namespaced( <<"http://www.w3.org/1998/Math/MathML"/utf8>>, <<"mprescripts"/utf8>>, Attrs, Children ). -file("src/agnostic/element/mathml.gleam", 47). ?DOC("\n"). -spec mrow( list(agnostic@vdom@vattr:attribute(OJZ)), list(agnostic@vdom@vnode:element(OJZ)) ) -> agnostic@vdom@vnode:element(OJZ). mrow(Attrs, Children) -> agnostic@element:namespaced( <<"http://www.w3.org/1998/Math/MathML"/utf8>>, <<"mrow"/utf8>>, Attrs, Children ). -file("src/agnostic/element/mathml.gleam", 55). ?DOC("\n"). -spec mstyle( list(agnostic@vdom@vattr:attribute(OKF)), list(agnostic@vdom@vnode:element(OKF)) ) -> agnostic@vdom@vnode:element(OKF). mstyle(Attrs, Children) -> agnostic@element:namespaced( <<"http://www.w3.org/1998/Math/MathML"/utf8>>, <<"mstyle"/utf8>>, Attrs, Children ). -file("src/agnostic/element/mathml.gleam", 63). ?DOC("\n"). -spec semantics( list(agnostic@vdom@vattr:attribute(OKL)), list(agnostic@vdom@vnode:element(OKL)) ) -> agnostic@vdom@vnode:element(OKL). semantics(Attrs, Children) -> agnostic@element:namespaced( <<"http://www.w3.org/1998/Math/MathML"/utf8>>, <<"semantics"/utf8>>, Attrs, Children ). -file("src/agnostic/element/mathml.gleam", 73). ?DOC("\n"). -spec mmultiscripts( list(agnostic@vdom@vattr:attribute(OKR)), list(agnostic@vdom@vnode:element(OKR)) ) -> agnostic@vdom@vnode:element(OKR). mmultiscripts(Attrs, Children) -> agnostic@element:namespaced( <<"http://www.w3.org/1998/Math/MathML"/utf8>>, <<"mmultiscripts"/utf8>>, Attrs, Children ). -file("src/agnostic/element/mathml.gleam", 81). ?DOC("\n"). -spec mover( list(agnostic@vdom@vattr:attribute(OKX)), list(agnostic@vdom@vnode:element(OKX)) ) -> agnostic@vdom@vnode:element(OKX). mover(Attrs, Children) -> agnostic@element:namespaced( <<"http://www.w3.org/1998/Math/MathML"/utf8>>, <<"mover"/utf8>>, Attrs, Children ). -file("src/agnostic/element/mathml.gleam", 89). ?DOC("\n"). -spec msub( list(agnostic@vdom@vattr:attribute(OLD)), list(agnostic@vdom@vnode:element(OLD)) ) -> agnostic@vdom@vnode:element(OLD). msub(Attrs, Children) -> agnostic@element:namespaced( <<"http://www.w3.org/1998/Math/MathML"/utf8>>, <<"msub"/utf8>>, Attrs, Children ). -file("src/agnostic/element/mathml.gleam", 97). ?DOC("\n"). -spec msubsup( list(agnostic@vdom@vattr:attribute(OLJ)), list(agnostic@vdom@vnode:element(OLJ)) ) -> agnostic@vdom@vnode:element(OLJ). msubsup(Attrs, Children) -> agnostic@element:namespaced( <<"http://www.w3.org/1998/Math/MathML"/utf8>>, <<"msubsup"/utf8>>, Attrs, Children ). -file("src/agnostic/element/mathml.gleam", 105). ?DOC("\n"). -spec msup( list(agnostic@vdom@vattr:attribute(OLP)), list(agnostic@vdom@vnode:element(OLP)) ) -> agnostic@vdom@vnode:element(OLP). msup(Attrs, Children) -> agnostic@element:namespaced( <<"http://www.w3.org/1998/Math/MathML"/utf8>>, <<"msup"/utf8>>, Attrs, Children ). -file("src/agnostic/element/mathml.gleam", 113). ?DOC("\n"). -spec munder( list(agnostic@vdom@vattr:attribute(OLV)), list(agnostic@vdom@vnode:element(OLV)) ) -> agnostic@vdom@vnode:element(OLV). munder(Attrs, Children) -> agnostic@element:namespaced( <<"http://www.w3.org/1998/Math/MathML"/utf8>>, <<"munder"/utf8>>, Attrs, Children ). -file("src/agnostic/element/mathml.gleam", 121). ?DOC("\n"). -spec munderover( list(agnostic@vdom@vattr:attribute(OMB)), list(agnostic@vdom@vnode:element(OMB)) ) -> agnostic@vdom@vnode:element(OMB). munderover(Attrs, Children) -> agnostic@element:namespaced( <<"http://www.w3.org/1998/Math/MathML"/utf8>>, <<"munderover"/utf8>>, Attrs, Children ). -file("src/agnostic/element/mathml.gleam", 131). ?DOC("\n"). -spec mroot( list(agnostic@vdom@vattr:attribute(OMH)), list(agnostic@vdom@vnode:element(OMH)) ) -> agnostic@vdom@vnode:element(OMH). mroot(Attrs, Children) -> agnostic@element:namespaced( <<"http://www.w3.org/1998/Math/MathML"/utf8>>, <<"mroot"/utf8>>, Attrs, Children ). -file("src/agnostic/element/mathml.gleam", 139). ?DOC("\n"). -spec msqrt( list(agnostic@vdom@vattr:attribute(OMN)), list(agnostic@vdom@vnode:element(OMN)) ) -> agnostic@vdom@vnode:element(OMN). msqrt(Attrs, Children) -> agnostic@element:namespaced( <<"http://www.w3.org/1998/Math/MathML"/utf8>>, <<"msqrt"/utf8>>, Attrs, Children ). -file("src/agnostic/element/mathml.gleam", 149). ?DOC("\n"). -spec annotation( list(agnostic@vdom@vattr:attribute(OMT)), list(agnostic@vdom@vnode:element(OMT)) ) -> agnostic@vdom@vnode:element(OMT). annotation(Attrs, Children) -> agnostic@element:namespaced( <<"http://www.w3.org/1998/Math/MathML"/utf8>>, <<"annotation"/utf8>>, Attrs, Children ). -file("src/agnostic/element/mathml.gleam", 157). ?DOC("\n"). -spec annotation_xml( list(agnostic@vdom@vattr:attribute(OMZ)), list(agnostic@vdom@vnode:element(OMZ)) ) -> agnostic@vdom@vnode:element(OMZ). annotation_xml(Attrs, Children) -> agnostic@element:namespaced( <<"http://www.w3.org/1998/Math/MathML"/utf8>>, <<"annotation-xml"/utf8>>, Attrs, Children ). -file("src/agnostic/element/mathml.gleam", 165). ?DOC("\n"). -spec mfrac( list(agnostic@vdom@vattr:attribute(ONF)), list(agnostic@vdom@vnode:element(ONF)) ) -> agnostic@vdom@vnode:element(ONF). mfrac(Attrs, Children) -> agnostic@element:namespaced( <<"http://www.w3.org/1998/Math/MathML"/utf8>>, <<"mfrac"/utf8>>, Attrs, Children ). -file("src/agnostic/element/mathml.gleam", 173). ?DOC("\n"). -spec mn(list(agnostic@vdom@vattr:attribute(ONL)), binary()) -> agnostic@vdom@vnode:element(ONL). mn(Attrs, Text) -> agnostic@element:namespaced( <<"http://www.w3.org/1998/Math/MathML"/utf8>>, <<"mn"/utf8>>, Attrs, [agnostic@element:text(Text)] ). -file("src/agnostic/element/mathml.gleam", 178). ?DOC("\n"). -spec mo(list(agnostic@vdom@vattr:attribute(ONP)), binary()) -> agnostic@vdom@vnode:element(ONP). mo(Attrs, Text) -> agnostic@element:namespaced( <<"http://www.w3.org/1998/Math/MathML"/utf8>>, <<"mo"/utf8>>, Attrs, [agnostic@element:text(Text)] ). -file("src/agnostic/element/mathml.gleam", 183). ?DOC("\n"). -spec mi(list(agnostic@vdom@vattr:attribute(ONT)), binary()) -> agnostic@vdom@vnode:element(ONT). mi(Attrs, Text) -> agnostic@element:namespaced( <<"http://www.w3.org/1998/Math/MathML"/utf8>>, <<"mi"/utf8>>, Attrs, [agnostic@element:text(Text)] ). -file("src/agnostic/element/mathml.gleam", 188). ?DOC("\n"). -spec mpadded( list(agnostic@vdom@vattr:attribute(ONX)), list(agnostic@vdom@vnode:element(ONX)) ) -> agnostic@vdom@vnode:element(ONX). mpadded(Attrs, Children) -> agnostic@element:namespaced( <<"http://www.w3.org/1998/Math/MathML"/utf8>>, <<"mpadded"/utf8>>, Attrs, Children ). -file("src/agnostic/element/mathml.gleam", 196). ?DOC("\n"). -spec ms(list(agnostic@vdom@vattr:attribute(OOD)), binary()) -> agnostic@vdom@vnode:element(OOD). ms(Attrs, Text) -> agnostic@element:namespaced( <<"http://www.w3.org/1998/Math/MathML"/utf8>>, <<"ms"/utf8>>, Attrs, [agnostic@element:text(Text)] ). -file("src/agnostic/element/mathml.gleam", 201). ?DOC("\n"). -spec mspace(list(agnostic@vdom@vattr:attribute(OOH))) -> agnostic@vdom@vnode:element(OOH). mspace(Attrs) -> agnostic@element:namespaced( <<"http://www.w3.org/1998/Math/MathML"/utf8>>, <<"mspace"/utf8>>, Attrs, [] ). -file("src/agnostic/element/mathml.gleam", 206). ?DOC("\n"). -spec mtable( list(agnostic@vdom@vattr:attribute(OOL)), list(agnostic@vdom@vnode:element(OOL)) ) -> agnostic@vdom@vnode:element(OOL). mtable(Attrs, Children) -> agnostic@element:namespaced( <<"http://www.w3.org/1998/Math/MathML"/utf8>>, <<"mtable"/utf8>>, Attrs, Children ). -file("src/agnostic/element/mathml.gleam", 214). ?DOC("\n"). -spec mtd( list(agnostic@vdom@vattr:attribute(OOR)), list(agnostic@vdom@vnode:element(OOR)) ) -> agnostic@vdom@vnode:element(OOR). mtd(Attrs, Children) -> agnostic@element:namespaced( <<"http://www.w3.org/1998/Math/MathML"/utf8>>, <<"mtd"/utf8>>, Attrs, Children ). -file("src/agnostic/element/mathml.gleam", 222). ?DOC("\n"). -spec mtext(list(agnostic@vdom@vattr:attribute(OOX)), binary()) -> agnostic@vdom@vnode:element(OOX). mtext(Attrs, Text) -> agnostic@element:namespaced( <<"http://www.w3.org/1998/Math/MathML"/utf8>>, <<"mtext"/utf8>>, Attrs, [agnostic@element:text(Text)] ). -file("src/agnostic/element/mathml.gleam", 230). ?DOC("\n"). -spec mtr( list(agnostic@vdom@vattr:attribute(OPB)), list(agnostic@vdom@vnode:element(OPB)) ) -> agnostic@vdom@vnode:element(OPB). mtr(Attrs, Children) -> agnostic@element:namespaced( <<"http://www.w3.org/1998/Math/MathML"/utf8>>, <<"mtr"/utf8>>, Attrs, Children ).