Current section
Files
Jump to
Current section
Files
src/html.erl
-module(html).
-compile([no_auto_import, nowarn_unused_vars, nowarn_unused_function, nowarn_nomatch, inline]).
-define(FILEPATH, "src/html.gleam").
-export([text/1, math/2, img/1, button/2, bdi/2, sup/2, ruby/2, h4/2, footer/2, figcaption/2, dt/2, bdo/2, dl/2, title/2, br/1, video/2, 'div'/2, abbr/2, var/2, hgroup/2, summary/2, datalist/2, object/2, cite/2, rt/2, picture/2, pre/2, h2/2, del/2, ol/2, audio/2, option/2, base/1, svg/2, h5/2, template/2, track/1, em/2, fencedframe/2, form/2, label/2, kbd/2, colgroup/2, fieldset/2, dd/2, search/2, blockquote/2, th/2, caption/2, script/2, tbody/2, dialog/2, select/2, noscript/2, li/2, progress/2, source/1, map/2, meta/1, time/2, strong/2, aside/2, textarea/2, samp/2, ins/2, u/2, geolocation/2, figure/2, input/1, main/2, col/1, legend/2, body/2, slot/2, code/2, thead/2, hr/1, area/1, h3/2, ul/2, style/2, tfoot/2, h1/2, small/2, rp/2, embed/1, nav/2, td/2, h6/2, table/2, canvas/2, tr/2, q/2, optgroup/2, i/2, head/2, link/1, output/2, span/2, menu/2, a/2, selectedcontent/2, header/2, mark/2, b/2, sub/2, p/2, address/2, details/2, html/2, meter/2, section/2, wbr/1, article/2, s/2, dfn/2, iframe/2, data/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.
?MODULEDOC(
" Element creation functions scraped from https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements\n"
" This list automatically excludes any elements or attributes that are deprecated\n"
).
-file("src/html.gleam", 8).
-spec text(binary()) -> presentable_soup:element_tree().
text(Text) ->
mellie:text(Text).
-file("src/html.gleam", 13).
?DOC(" The top-level element in MathML. Every valid MathML instance must be wrapped in it. In addition, you must not nest a second <math> element in another, but you can have an arbitrary number of other child elements in it.\n").
-spec math(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
math(Attrs, Children) ->
mellie:element(<<"math"/utf8>>, Attrs, Children).
-file("src/html.gleam", 18).
?DOC(" Embeds an image into the document.\n").
-spec img(list({binary(), binary()})) -> presentable_soup:element_tree().
img(Attrs) ->
mellie:element(<<"img"/utf8>>, Attrs, []).
-file("src/html.gleam", 23).
?DOC(" An interactive element activated by a user with a mouse, keyboard, finger, voice command, or other assistive technology. Once activated, it performs an action, such as submitting a form or opening a dialog.\n").
-spec button(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
button(Attrs, Children) ->
mellie:element(<<"button"/utf8>>, Attrs, Children).
-file("src/html.gleam", 28).
?DOC(" Tells the browser's bidirectional algorithm to treat the text it contains in isolation from its surrounding text. It's particularly useful when a website dynamically inserts some text and doesn't know the directionality of the text being inserted.\n").
-spec bdi(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
bdi(Attrs, Children) ->
mellie:element(<<"bdi"/utf8>>, Attrs, Children).
-file("src/html.gleam", 33).
?DOC(" Specifies inline text which is to be displayed as superscript for solely typographical reasons. Superscripts are usually rendered with a raised baseline using smaller text.\n").
-spec sup(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
sup(Attrs, Children) ->
mellie:element(<<"sup"/utf8>>, Attrs, Children).
-file("src/html.gleam", 38).
?DOC(" Represents small annotations that are rendered above, below, or next to base text, usually used for showing the pronunciation of East Asian characters. It can also be used for annotating other kinds of text, but this usage is less common.\n").
-spec ruby(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
ruby(Attrs, Children) ->
mellie:element(<<"ruby"/utf8>>, Attrs, Children).
-file("src/html.gleam", 43).
?DOC(" Represent six levels of section headings. <h1> is the highest section level and <h6> is the lowest.\n").
-spec h4(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
h4(Attrs, Children) ->
mellie:element(<<"h4"/utf8>>, Attrs, Children).
-file("src/html.gleam", 48).
?DOC(" Represents a footer for its nearest ancestor sectioning content or sectioning root element. A <footer> typically contains information about the author of the section, copyright data, or links to related documents.\n").
-spec footer(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
footer(Attrs, Children) ->
mellie:element(<<"footer"/utf8>>, Attrs, Children).
-file("src/html.gleam", 53).
?DOC(" Represents a caption or legend describing the rest of the contents of its parent <figure> element.\n").
-spec figcaption(
list({binary(), binary()}),
list(presentable_soup:element_tree())
) -> presentable_soup:element_tree().
figcaption(Attrs, Children) ->
mellie:element(<<"figcaption"/utf8>>, Attrs, Children).
-file("src/html.gleam", 58).
?DOC(" Specifies a term in a description or definition list, and as such must be used inside a <dl> element. It is usually followed by a <dd> element; however, multiple <dt> elements in a row indicate several terms that are all defined by the immediate next <dd> element.\n").
-spec dt(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
dt(Attrs, Children) ->
mellie:element(<<"dt"/utf8>>, Attrs, Children).
-file("src/html.gleam", 63).
?DOC(" Overrides the current directionality of text, so that the text within is rendered in a different direction.\n").
-spec bdo(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
bdo(Attrs, Children) ->
mellie:element(<<"bdo"/utf8>>, Attrs, Children).
-file("src/html.gleam", 68).
?DOC(" Represents a description list. The element encloses a list of groups of terms (specified using the <dt> element) and descriptions (provided by <dd> elements). Common uses for this element are to implement a glossary or to display metadata (a list of key-value pairs).\n").
-spec dl(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
dl(Attrs, Children) ->
mellie:element(<<"dl"/utf8>>, Attrs, Children).
-file("src/html.gleam", 73).
?DOC(" Defines the document's title that is shown in a browser 's title bar or a page's tab. It only contains text; HTML tags within the element, if any, are also treated as plain text.\n").
-spec title(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
title(Attrs, Children) ->
mellie:element(<<"title"/utf8>>, Attrs, Children).
-file("src/html.gleam", 78).
?DOC(" Produces a line break in text (carriage-return). It is useful for writing a poem or an address, where the division of lines is significant.\n").
-spec br(list({binary(), binary()})) -> presentable_soup:element_tree().
br(Attrs) ->
mellie:element(<<"br"/utf8>>, Attrs, []).
-file("src/html.gleam", 83).
?DOC(" Embeds a media player which supports video playback into the document. You can also use <video> for audio content, but the audio element may provide a more appropriate user experience.\n").
-spec video(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
video(Attrs, Children) ->
mellie:element(<<"video"/utf8>>, Attrs, Children).
-file("src/html.gleam", 88).
?DOC(" The generic container for flow content. It has no effect on the content or layout until styled in some way using CSS (e.g., styling is directly applied to it, or some kind of layout model like flexbox is applied to its parent element).\n").
-spec 'div'(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
'div'(Attrs, Children) ->
mellie:element(<<"div"/utf8>>, Attrs, Children).
-file("src/html.gleam", 93).
?DOC(" Represents an abbreviation or acronym.\n").
-spec abbr(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
abbr(Attrs, Children) ->
mellie:element(<<"abbr"/utf8>>, Attrs, Children).
-file("src/html.gleam", 98).
?DOC(" Represents the name of a variable in a mathematical expression or a programming context. It's typically presented using an italicized version of the current typeface, although that behavior is browser-dependent.\n").
-spec var(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
var(Attrs, Children) ->
mellie:element(<<"var"/utf8>>, Attrs, Children).
-file("src/html.gleam", 103).
?DOC(" Represents a heading grouped with any secondary content, such as subheadings, an alternative title, or a tagline.\n").
-spec hgroup(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
hgroup(Attrs, Children) ->
mellie:element(<<"hgroup"/utf8>>, Attrs, Children).
-file("src/html.gleam", 108).
?DOC(" Specifies a summary, caption, or legend for a details element's disclosure box. Clicking the <summary> element toggles the state of the parent <details> element open and closed.\n").
-spec summary(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
summary(Attrs, Children) ->
mellie:element(<<"summary"/utf8>>, Attrs, Children).
-file("src/html.gleam", 113).
?DOC(" Contains a set of <option> elements that represent the permissible or recommended options available to choose from within other controls.\n").
-spec datalist(
list({binary(), binary()}),
list(presentable_soup:element_tree())
) -> presentable_soup:element_tree().
datalist(Attrs, Children) ->
mellie:element(<<"datalist"/utf8>>, Attrs, Children).
-file("src/html.gleam", 118).
?DOC(" Represents an external resource, which can be treated as an image, a nested browsing context, or a resource to be handled by a plugin.\n").
-spec object(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
object(Attrs, Children) ->
mellie:element(<<"object"/utf8>>, Attrs, Children).
-file("src/html.gleam", 123).
?DOC(" Used to mark up the title of a creative work. The reference may be in an abbreviated form according to context-appropriate conventions related to citation metadata.\n").
-spec cite(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
cite(Attrs, Children) ->
mellie:element(<<"cite"/utf8>>, Attrs, Children).
-file("src/html.gleam", 128).
?DOC(" Specifies the ruby text component of a ruby annotation, which is used to provide pronunciation, translation, or transliteration information for East Asian typography. The <rt> element must always be contained within a <ruby> element.\n").
-spec rt(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
rt(Attrs, Children) ->
mellie:element(<<"rt"/utf8>>, Attrs, Children).
-file("src/html.gleam", 133).
?DOC(" Contains zero or more <source> elements and one <img> element to offer alternative versions of an image for different display/device scenarios.\n").
-spec picture(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
picture(Attrs, Children) ->
mellie:element(<<"picture"/utf8>>, Attrs, Children).
-file("src/html.gleam", 138).
?DOC(" Represents preformatted text which is to be presented exactly as written in the HTML file. The text is typically rendered using a non-proportional, or monospaced , font. Whitespace inside this element is displayed as written.\n").
-spec pre(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
pre(Attrs, Children) ->
mellie:element(<<"pre"/utf8>>, Attrs, Children).
-file("src/html.gleam", 143).
?DOC(" Represent six levels of section headings. <h1> is the highest section level and <h6> is the lowest.\n").
-spec h2(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
h2(Attrs, Children) ->
mellie:element(<<"h2"/utf8>>, Attrs, Children).
-file("src/html.gleam", 148).
?DOC(" Represents a range of text that has been deleted from a document. This can be used when rendering \"track changes\" or source code diff information, for example. The <ins> element can be used for the opposite purpose: to indicate text that has been added to the document.\n").
-spec del(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
del(Attrs, Children) ->
mellie:element(<<"del"/utf8>>, Attrs, Children).
-file("src/html.gleam", 153).
?DOC(" Represents an ordered list of items — typically rendered as a numbered list.\n").
-spec ol(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
ol(Attrs, Children) ->
mellie:element(<<"ol"/utf8>>, Attrs, Children).
-file("src/html.gleam", 158).
?DOC(" Used to embed sound content in documents. It may contain one or more audio sources, represented using the src attribute or the source element: the browser will choose the most suitable one. It can also be the destination for streamed media, using a MediaStream .\n").
-spec audio(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
audio(Attrs, Children) ->
mellie:element(<<"audio"/utf8>>, Attrs, Children).
-file("src/html.gleam", 163).
?DOC(" Used to define an item contained in a <select> , an <optgroup> , or a <datalist> element. As such, <option> can represent menu items in popups and other lists of items in an HTML document.\n").
-spec option(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
option(Attrs, Children) ->
mellie:element(<<"option"/utf8>>, Attrs, Children).
-file("src/html.gleam", 168).
?DOC(" Specifies the base URL to use for all relative URLs in a document. There can be only one such element in a document.\n").
-spec base(list({binary(), binary()})) -> presentable_soup:element_tree().
base(Attrs) ->
mellie:element(<<"base"/utf8>>, Attrs, []).
-file("src/html.gleam", 173).
?DOC(" Container defining a new coordinate system and viewport . It is used as the outermost element of SVG documents, but it can also be used to embed an SVG fragment inside an SVG or HTML document.\n").
-spec svg(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
svg(Attrs, Children) ->
mellie:element(<<"svg"/utf8>>, Attrs, Children).
-file("src/html.gleam", 178).
?DOC(" Represent six levels of section headings. <h1> is the highest section level and <h6> is the lowest.\n").
-spec h5(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
h5(Attrs, Children) ->
mellie:element(<<"h5"/utf8>>, Attrs, Children).
-file("src/html.gleam", 183).
?DOC(" A mechanism for holding HTML that is not to be rendered immediately when a page is loaded but may be instantiated subsequently during runtime using JavaScript.\n").
-spec template(
list({binary(), binary()}),
list(presentable_soup:element_tree())
) -> presentable_soup:element_tree().
template(Attrs, Children) ->
mellie:element(<<"template"/utf8>>, Attrs, Children).
-file("src/html.gleam", 188).
?DOC(" Used as a child of the media elements, audio and video. It lets you specify timed text tracks (or time-based data), for example to automatically handle subtitles. The tracks are formatted in WebVTT format ( .vtt files)—Web Video Text Tracks.\n").
-spec track(list({binary(), binary()})) -> presentable_soup:element_tree().
track(Attrs) ->
mellie:element(<<"track"/utf8>>, Attrs, []).
-file("src/html.gleam", 193).
?DOC(" Marks text that has stress emphasis. The <em> element can be nested, with each nesting level indicating a greater degree of emphasis.\n").
-spec em(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
em(Attrs, Children) ->
mellie:element(<<"em"/utf8>>, Attrs, Children).
-file("src/html.gleam", 198).
?DOC(" Represents a nested browsing context, like <iframe> but with more native privacy features built in.\n").
-spec fencedframe(
list({binary(), binary()}),
list(presentable_soup:element_tree())
) -> presentable_soup:element_tree().
fencedframe(Attrs, Children) ->
mellie:element(<<"fencedframe"/utf8>>, Attrs, Children).
-file("src/html.gleam", 203).
?DOC(" Represents a document section containing interactive controls for submitting information.\n").
-spec form(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
form(Attrs, Children) ->
mellie:element(<<"form"/utf8>>, Attrs, Children).
-file("src/html.gleam", 208).
?DOC(" Represents a caption for an item in a user interface.\n").
-spec label(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
label(Attrs, Children) ->
mellie:element(<<"label"/utf8>>, Attrs, Children).
-file("src/html.gleam", 213).
?DOC(" Represents a span of inline text denoting textual user input from a keyboard, voice input, or any other text entry device. By convention, the user agent defaults to rendering the contents of a <kbd> element using its default monospace font, although this is not mandated by the HTML standard.\n").
-spec kbd(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
kbd(Attrs, Children) ->
mellie:element(<<"kbd"/utf8>>, Attrs, Children).
-file("src/html.gleam", 218).
?DOC(" Defines a group of columns within a table.\n").
-spec colgroup(
list({binary(), binary()}),
list(presentable_soup:element_tree())
) -> presentable_soup:element_tree().
colgroup(Attrs, Children) ->
mellie:element(<<"colgroup"/utf8>>, Attrs, Children).
-file("src/html.gleam", 223).
?DOC(" Used to group several controls as well as labels ( <label> ) within a web form.\n").
-spec fieldset(
list({binary(), binary()}),
list(presentable_soup:element_tree())
) -> presentable_soup:element_tree().
fieldset(Attrs, Children) ->
mellie:element(<<"fieldset"/utf8>>, Attrs, Children).
-file("src/html.gleam", 228).
?DOC(" Provides the description, definition, or value for the preceding term ( <dt> ) in a description list ( <dl> ).\n").
-spec dd(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
dd(Attrs, Children) ->
mellie:element(<<"dd"/utf8>>, Attrs, Children).
-file("src/html.gleam", 233).
?DOC(" Represents a part that contains a set of form controls or other content related to performing a search or filtering operation.\n").
-spec search(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
search(Attrs, Children) ->
mellie:element(<<"search"/utf8>>, Attrs, Children).
-file("src/html.gleam", 238).
?DOC(" Indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation. A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.\n").
-spec blockquote(
list({binary(), binary()}),
list(presentable_soup:element_tree())
) -> presentable_soup:element_tree().
blockquote(Attrs, Children) ->
mellie:element(<<"blockquote"/utf8>>, Attrs, Children).
-file("src/html.gleam", 243).
?DOC(" A child of the <tr> element, it defines a cell as the header of a group of table cells. The nature of this group can be explicitly defined by the scope and headers attributes.\n").
-spec th(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
th(Attrs, Children) ->
mellie:element(<<"th"/utf8>>, Attrs, Children).
-file("src/html.gleam", 248).
?DOC(" Specifies the caption (or title) of a table.\n").
-spec caption(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
caption(Attrs, Children) ->
mellie:element(<<"caption"/utf8>>, Attrs, Children).
-file("src/html.gleam", 253).
?DOC(" Used to embed executable code or data; this is typically used to embed or refer to JavaScript code. The <script> element can also be used with other languages, such as WebGL 's GLSL shader programming language and JSON .\n").
-spec script(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
script(Attrs, Children) ->
mellie:element(<<"script"/utf8>>, Attrs, Children).
-file("src/html.gleam", 258).
?DOC(" Encapsulates a set of table rows ( <tr> elements), indicating that they comprise the body of a table's (main) data.\n").
-spec tbody(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
tbody(Attrs, Children) ->
mellie:element(<<"tbody"/utf8>>, Attrs, Children).
-file("src/html.gleam", 263).
?DOC(" Represents a dialog box or other interactive component, such as a dismissible alert, inspector, or subwindow.\n").
-spec dialog(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
dialog(Attrs, Children) ->
mellie:element(<<"dialog"/utf8>>, Attrs, Children).
-file("src/html.gleam", 268).
?DOC(" Represents a control that provides a menu of options.\n").
-spec select(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
select(Attrs, Children) ->
mellie:element(<<"select"/utf8>>, Attrs, Children).
-file("src/html.gleam", 273).
?DOC(" Defines a section of HTML to be inserted if a script type on the page is unsupported or if scripting is currently turned off in the browser.\n").
-spec noscript(
list({binary(), binary()}),
list(presentable_soup:element_tree())
) -> presentable_soup:element_tree().
noscript(Attrs, Children) ->
mellie:element(<<"noscript"/utf8>>, Attrs, Children).
-file("src/html.gleam", 278).
?DOC(" Represents an item in a list. It must be contained in a parent element: an ordered list ( <ol> ), an unordered list ( <ul> ), or a menu ( <menu> ). In menus and unordered lists, list items are usually displayed using bullet points. In ordered lists, they are usually displayed with an ascending counter on the left, such as a number or letter.\n").
-spec li(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
li(Attrs, Children) ->
mellie:element(<<"li"/utf8>>, Attrs, Children).
-file("src/html.gleam", 283).
?DOC(" Displays an indicator showing the completion progress of a task, typically displayed as a progress bar.\n").
-spec progress(
list({binary(), binary()}),
list(presentable_soup:element_tree())
) -> presentable_soup:element_tree().
progress(Attrs, Children) ->
mellie:element(<<"progress"/utf8>>, Attrs, Children).
-file("src/html.gleam", 288).
?DOC(" Specifies multiple media resources for the picture, the audio element, or the video element. It is a void element, meaning that it has no content and does not have a closing tag. It is commonly used to offer the same media content in multiple file formats in order to provide compatibility with a broad range of browsers given their differing support for image file formats and media file formats .\n").
-spec source(list({binary(), binary()})) -> presentable_soup:element_tree().
source(Attrs) ->
mellie:element(<<"source"/utf8>>, Attrs, []).
-file("src/html.gleam", 293).
?DOC(" Used with <area> elements to define an image map (a clickable link area).\n").
-spec map(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
map(Attrs, Children) ->
mellie:element(<<"map"/utf8>>, Attrs, Children).
-file("src/html.gleam", 298).
?DOC(" Represents metadata that cannot be represented by other HTML meta-related elements, like <base> , <link> , <script> , <style> and <title> .\n").
-spec meta(list({binary(), binary()})) -> presentable_soup:element_tree().
meta(Attrs) ->
mellie:element(<<"meta"/utf8>>, Attrs, []).
-file("src/html.gleam", 303).
?DOC(" Represents a specific period in time. It may include the datetime attribute to translate dates into machine-readable format, allowing for better search engine results or custom features such as reminders.\n").
-spec time(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
time(Attrs, Children) ->
mellie:element(<<"time"/utf8>>, Attrs, Children).
-file("src/html.gleam", 308).
?DOC(" Indicates that its contents have strong importance, seriousness, or urgency. Browsers typically render the contents in bold type.\n").
-spec strong(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
strong(Attrs, Children) ->
mellie:element(<<"strong"/utf8>>, Attrs, Children).
-file("src/html.gleam", 313).
?DOC(" Represents a portion of a document whose content is only indirectly related to the document's main content. Asides are frequently presented as sidebars or call-out boxes.\n").
-spec aside(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
aside(Attrs, Children) ->
mellie:element(<<"aside"/utf8>>, Attrs, Children).
-file("src/html.gleam", 318).
?DOC(" Represents a multi-line plain-text editing control, useful when you want to allow users to enter a sizeable amount of free-form text, for example, a comment on a review or feedback form.\n").
-spec textarea(
list({binary(), binary()}),
list(presentable_soup:element_tree())
) -> presentable_soup:element_tree().
textarea(Attrs, Children) ->
mellie:element(<<"textarea"/utf8>>, Attrs, Children).
-file("src/html.gleam", 323).
?DOC(" Used to enclose inline text which represents sample (or quoted) output from a computer program. Its contents are typically rendered using the browser's default monospaced font (such as Courier or Lucida Console).\n").
-spec samp(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
samp(Attrs, Children) ->
mellie:element(<<"samp"/utf8>>, Attrs, Children).
-file("src/html.gleam", 328).
?DOC(" Represents a range of text that has been added to a document. You can use the <del> element to similarly represent a range of text that has been deleted from the document.\n").
-spec ins(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
ins(Attrs, Children) ->
mellie:element(<<"ins"/utf8>>, Attrs, Children).
-file("src/html.gleam", 333).
?DOC(" Represents a span of inline text which should be rendered in a way that indicates that it has a non-textual annotation. This is rendered by default as a single solid underline but may be altered using CSS.\n").
-spec u(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
u(Attrs, Children) ->
mellie:element(<<"u"/utf8>>, Attrs, Children).
-file("src/html.gleam", 338).
?DOC(" Creates an interactive control for the user to share their geolocation data with the page.\n").
-spec geolocation(
list({binary(), binary()}),
list(presentable_soup:element_tree())
) -> presentable_soup:element_tree().
geolocation(Attrs, Children) ->
mellie:element(<<"geolocation"/utf8>>, Attrs, Children).
-file("src/html.gleam", 343).
?DOC(" Represents self-contained content, potentially with an optional caption, which is specified using the <figcaption> element. The figure, its caption, and its contents are referenced as a single unit.\n").
-spec figure(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
figure(Attrs, Children) ->
mellie:element(<<"figure"/utf8>>, Attrs, Children).
-file("src/html.gleam", 348).
?DOC(" Used to create interactive controls for web-based forms to accept data from the user; a wide variety of types of input data and control widgets are available, depending on the device and user agent. The <input> element is one of the most powerful and complex in all of HTML due to the sheer number of combinations of input types and attributes.\n").
-spec input(list({binary(), binary()})) -> presentable_soup:element_tree().
input(Attrs) ->
mellie:element(<<"input"/utf8>>, Attrs, []).
-file("src/html.gleam", 353).
?DOC(" Represents the dominant content of the body of a document. The main content area consists of content that is directly related to or expands upon the central topic of a document, or the central functionality of an application.\n").
-spec main(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
main(Attrs, Children) ->
mellie:element(<<"main"/utf8>>, Attrs, Children).
-file("src/html.gleam", 358).
?DOC(" Defines one or more columns in a column group represented by its implicit or explicit parent <colgroup> element. The <col> element is only valid as a child of a <colgroup> element that has no span attribute defined.\n").
-spec col(list({binary(), binary()})) -> presentable_soup:element_tree().
col(Attrs) ->
mellie:element(<<"col"/utf8>>, Attrs, []).
-file("src/html.gleam", 363).
?DOC(" Represents a caption for the content of its parent <fieldset> .\n").
-spec legend(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
legend(Attrs, Children) ->
mellie:element(<<"legend"/utf8>>, Attrs, Children).
-file("src/html.gleam", 368).
?DOC(" Represents the content of an HTML document. There can be only one such element in a document.\n").
-spec body(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
body(Attrs, Children) ->
mellie:element(<<"body"/utf8>>, Attrs, Children).
-file("src/html.gleam", 373).
?DOC(" Part of the Web Components technology suite, this element is a placeholder inside a web component that you can fill with your own markup, which lets you create separate DOM trees and present them together.\n").
-spec slot(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
slot(Attrs, Children) ->
mellie:element(<<"slot"/utf8>>, Attrs, Children).
-file("src/html.gleam", 378).
?DOC(" Displays its contents styled in a fashion intended to indicate that the text is a short fragment of computer code. By default, the content text is displayed using the user agent's default monospace font.\n").
-spec code(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
code(Attrs, Children) ->
mellie:element(<<"code"/utf8>>, Attrs, Children).
-file("src/html.gleam", 383).
?DOC(" Encapsulates a set of table rows ( <tr> elements), indicating that they comprise the head of a table with information about the table's columns. This is usually in the form of column headers ( <th> elements).\n").
-spec thead(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
thead(Attrs, Children) ->
mellie:element(<<"thead"/utf8>>, Attrs, Children).
-file("src/html.gleam", 388).
?DOC(" Represents a thematic break between paragraph-level elements: for example, a change of scene in a story, or a shift of topic within a section.\n").
-spec hr(list({binary(), binary()})) -> presentable_soup:element_tree().
hr(Attrs) ->
mellie:element(<<"hr"/utf8>>, Attrs, []).
-file("src/html.gleam", 393).
?DOC(" Defines an area inside an image map that has predefined clickable areas. An image map allows geometric areas on an image to be associated with hyperlink .\n").
-spec area(list({binary(), binary()})) -> presentable_soup:element_tree().
area(Attrs) ->
mellie:element(<<"area"/utf8>>, Attrs, []).
-file("src/html.gleam", 398).
?DOC(" Represent six levels of section headings. <h1> is the highest section level and <h6> is the lowest.\n").
-spec h3(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
h3(Attrs, Children) ->
mellie:element(<<"h3"/utf8>>, Attrs, Children).
-file("src/html.gleam", 403).
?DOC(" Represents an unordered list of items, typically rendered as a bulleted list.\n").
-spec ul(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
ul(Attrs, Children) ->
mellie:element(<<"ul"/utf8>>, Attrs, Children).
-file("src/html.gleam", 408).
?DOC(" Contains style information for a document or part of a document. It contains CSS, which is applied to the contents of the document containing this element.\n").
-spec style(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
style(Attrs, Children) ->
mellie:element(<<"style"/utf8>>, Attrs, Children).
-file("src/html.gleam", 413).
?DOC(" Encapsulates a set of table rows ( <tr> elements), indicating that they comprise the foot of a table with information about the table's columns. This is usually a summary of the columns, e.g., a sum of the given numbers in a column.\n").
-spec tfoot(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
tfoot(Attrs, Children) ->
mellie:element(<<"tfoot"/utf8>>, Attrs, Children).
-file("src/html.gleam", 418).
?DOC(" Represent six levels of section headings. <h1> is the highest section level and <h6> is the lowest.\n").
-spec h1(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
h1(Attrs, Children) ->
mellie:element(<<"h1"/utf8>>, Attrs, Children).
-file("src/html.gleam", 423).
?DOC(" Represents side-comments and small print, like copyright and legal text, independent of its styled presentation. By default, it renders text within it one font size smaller, such as from small to x-small .\n").
-spec small(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
small(Attrs, Children) ->
mellie:element(<<"small"/utf8>>, Attrs, Children).
-file("src/html.gleam", 428).
?DOC(" Used to provide fall-back parentheses for browsers that do not support the display of ruby annotations using the <ruby> element. One <rp> element should enclose each of the opening and closing parentheses that wrap the <rt> element that contains the annotation's text.\n").
-spec rp(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
rp(Attrs, Children) ->
mellie:element(<<"rp"/utf8>>, Attrs, Children).
-file("src/html.gleam", 433).
?DOC(" Embeds external content at the specified point in the document. This content is provided by an external application or other source of interactive content such as a browser plug-in.\n").
-spec embed(list({binary(), binary()})) -> presentable_soup:element_tree().
embed(Attrs) ->
mellie:element(<<"embed"/utf8>>, Attrs, []).
-file("src/html.gleam", 438).
?DOC(" Represents a section of a page whose purpose is to provide navigation links, either within the current document or to other documents. Common examples of navigation sections are menus, tables of contents, and indexes.\n").
-spec nav(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
nav(Attrs, Children) ->
mellie:element(<<"nav"/utf8>>, Attrs, Children).
-file("src/html.gleam", 443).
?DOC(" A child of the <tr> element, it defines a cell of a table that contains data.\n").
-spec td(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
td(Attrs, Children) ->
mellie:element(<<"td"/utf8>>, Attrs, Children).
-file("src/html.gleam", 448).
?DOC(" Represent six levels of section headings. <h1> is the highest section level and <h6> is the lowest.\n").
-spec h6(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
h6(Attrs, Children) ->
mellie:element(<<"h6"/utf8>>, Attrs, Children).
-file("src/html.gleam", 453).
?DOC(" Represents tabular data—that is, information presented in a two-dimensional table comprised of rows and columns of cells containing data.\n").
-spec table(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
table(Attrs, Children) ->
mellie:element(<<"table"/utf8>>, Attrs, Children).
-file("src/html.gleam", 458).
?DOC(" Container element to use with either the canvas scripting API or the WebGL API to draw graphics and animations.\n").
-spec canvas(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
canvas(Attrs, Children) ->
mellie:element(<<"canvas"/utf8>>, Attrs, Children).
-file("src/html.gleam", 463).
?DOC(" Defines a row of cells in a table. The row's cells can then be established using a mix of <td> (data cell) and <th> (header cell) elements.\n").
-spec tr(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
tr(Attrs, Children) ->
mellie:element(<<"tr"/utf8>>, Attrs, Children).
-file("src/html.gleam", 468).
?DOC(" Indicates that the enclosed text is a short inline quotation. Most modern browsers implement this by surrounding the text in quotation marks. This element is intended for short quotations that don't require paragraph breaks; for long quotations use the <blockquote> element.\n").
-spec q(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
q(Attrs, Children) ->
mellie:element(<<"q"/utf8>>, Attrs, Children).
-file("src/html.gleam", 473).
?DOC(" Creates a grouping of options within a <select> element.\n").
-spec optgroup(
list({binary(), binary()}),
list(presentable_soup:element_tree())
) -> presentable_soup:element_tree().
optgroup(Attrs, Children) ->
mellie:element(<<"optgroup"/utf8>>, Attrs, Children).
-file("src/html.gleam", 478).
?DOC(" Represents a range of text that is set off from the normal text for some reason, such as idiomatic text, technical terms, and taxonomical designations, among others. Historically, these have been presented using italicized type, which is the original source of the <i> naming of this element.\n").
-spec i(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
i(Attrs, Children) ->
mellie:element(<<"i"/utf8>>, Attrs, Children).
-file("src/html.gleam", 483).
?DOC(" Contains machine-readable information (metadata) about the document, like its title , scripts , and style sheets .\n").
-spec head(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
head(Attrs, Children) ->
mellie:element(<<"head"/utf8>>, Attrs, Children).
-file("src/html.gleam", 488).
?DOC(" Specifies relationships between the current document and an external resource. This element is most commonly used to link to CSS but is also used to establish site icons (both \"favicon\" style icons and icons for the home screen and apps on mobile devices) among other things.\n").
-spec link(list({binary(), binary()})) -> presentable_soup:element_tree().
link(Attrs) ->
mellie:element(<<"link"/utf8>>, Attrs, []).
-file("src/html.gleam", 493).
?DOC(" Container element into which a site or app can inject the results of a calculation or the outcome of a user action.\n").
-spec output(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
output(Attrs, Children) ->
mellie:element(<<"output"/utf8>>, Attrs, Children).
-file("src/html.gleam", 498).
?DOC(" A generic inline container for phrasing content, which does not inherently represent anything. It can be used to group elements for styling purposes (using the class or id attributes), or because they share attribute values, such as lang . It should be used only when no other semantic element is appropriate. <span> is very much like a div element, but div is a block-level element whereas a <span> is an inline-level element .\n").
-spec span(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
span(Attrs, Children) ->
mellie:element(<<"span"/utf8>>, Attrs, Children).
-file("src/html.gleam", 503).
?DOC(" A semantic alternative to <ul> , but treated by browsers (and exposed through the accessibility tree) as no different than <ul> . It represents an unordered list of items (which are represented by <li> elements).\n").
-spec menu(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
menu(Attrs, Children) ->
mellie:element(<<"menu"/utf8>>, Attrs, Children).
-file("src/html.gleam", 508).
?DOC(" Together with its href attribute, creates a hyperlink to web pages, files, email addresses, locations within the current page, or anything else a URL can address.\n").
-spec a(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
a(Attrs, Children) ->
mellie:element(<<"a"/utf8>>, Attrs, Children).
-file("src/html.gleam", 513).
?DOC(" Displays the content of the currently selected <option> inside a closed <select> element.\n").
-spec selectedcontent(
list({binary(), binary()}),
list(presentable_soup:element_tree())
) -> presentable_soup:element_tree().
selectedcontent(Attrs, Children) ->
mellie:element(<<"selectedcontent"/utf8>>, Attrs, Children).
-file("src/html.gleam", 518).
?DOC(" Represents introductory content, typically a group of introductory or navigational aids. It may contain some heading elements but also a logo, a search form, an author name, and other elements.\n").
-spec header(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
header(Attrs, Children) ->
mellie:element(<<"header"/utf8>>, Attrs, Children).
-file("src/html.gleam", 523).
?DOC(" Represents text which is marked or highlighted for reference or notation purposes due to the marked passage's relevance in the enclosing context.\n").
-spec mark(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
mark(Attrs, Children) ->
mellie:element(<<"mark"/utf8>>, Attrs, Children).
-file("src/html.gleam", 528).
?DOC(" Used to draw the reader's attention to the element's contents, which are not otherwise granted special importance. This was formerly known as the Boldface element, and most browsers still draw the text in boldface. However, you should not use <b> for styling text or granting importance. If you wish to create boldface text, you should use the CSS font-weight property. If you wish to indicate an element is of special importance, you should use the <strong> element.\n").
-spec b(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
b(Attrs, Children) ->
mellie:element(<<"b"/utf8>>, Attrs, Children).
-file("src/html.gleam", 533).
?DOC(" Specifies inline text which should be displayed as subscript for solely typographical reasons. Subscripts are typically rendered with a lowered baseline using smaller text.\n").
-spec sub(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
sub(Attrs, Children) ->
mellie:element(<<"sub"/utf8>>, Attrs, Children).
-file("src/html.gleam", 538).
?DOC(" Represents a paragraph. Paragraphs are usually represented in visual media as blocks of text separated from adjacent blocks by blank lines and/or first-line indentation, but HTML paragraphs can be any structural grouping of related content, such as images or form fields.\n").
-spec p(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
p(Attrs, Children) ->
mellie:element(<<"p"/utf8>>, Attrs, Children).
-file("src/html.gleam", 543).
?DOC(" Indicates that the enclosed HTML provides contact information for a person or people, or for an organization.\n").
-spec address(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
address(Attrs, Children) ->
mellie:element(<<"address"/utf8>>, Attrs, Children).
-file("src/html.gleam", 548).
?DOC(" Creates a disclosure widget in which information is visible only when the widget is toggled into an \"open\" state. A summary or label must be provided using the <summary> element.\n").
-spec details(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
details(Attrs, Children) ->
mellie:element(<<"details"/utf8>>, Attrs, Children).
-file("src/html.gleam", 553).
?DOC(" Represents the root (top-level element) of an HTML document, so it is also referred to as the root element . All other elements must be descendants of this element.\n").
-spec html(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
html(Attrs, Children) ->
mellie:element(<<"html"/utf8>>, Attrs, Children).
-file("src/html.gleam", 558).
?DOC(" Represents either a scalar value within a known range or a fractional value.\n").
-spec meter(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
meter(Attrs, Children) ->
mellie:element(<<"meter"/utf8>>, Attrs, Children).
-file("src/html.gleam", 563).
?DOC(" Represents a generic standalone section of a document, which doesn't have a more specific semantic element to represent it. Sections should always have a heading, with very few exceptions.\n").
-spec section(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
section(Attrs, Children) ->
mellie:element(<<"section"/utf8>>, Attrs, Children).
-file("src/html.gleam", 568).
?DOC(" Represents a word break opportunity—a position within text where the browser may optionally break a line, though its line-breaking rules would not otherwise create a break at that location.\n").
-spec wbr(list({binary(), binary()})) -> presentable_soup:element_tree().
wbr(Attrs) ->
mellie:element(<<"wbr"/utf8>>, Attrs, []).
-file("src/html.gleam", 573).
?DOC(" Represents a self-contained composition in a document, page, application, or site, which is intended to be independently distributable or reusable (e.g., in syndication). Examples include a forum post, a magazine or newspaper article, a blog entry, a product card, a user-submitted comment, an interactive widget or gadget, or any other independent item of content.\n").
-spec article(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
article(Attrs, Children) ->
mellie:element(<<"article"/utf8>>, Attrs, Children).
-file("src/html.gleam", 578).
?DOC(" Renders text with a strikethrough, or a line through it. Use the <s> element to represent things that are no longer relevant or no longer accurate. However, <s> is not appropriate when indicating document edits; for that, use the <del> and <ins> elements, as appropriate.\n").
-spec s(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
s(Attrs, Children) ->
mellie:element(<<"s"/utf8>>, Attrs, Children).
-file("src/html.gleam", 583).
?DOC(" Used to indicate the term being defined within the context of a definition phrase or sentence. The ancestor <p> element, the <dt> / <dd> pairing, or the nearest section ancestor of the <dfn> element, is considered to be the definition of the term.\n").
-spec dfn(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
dfn(Attrs, Children) ->
mellie:element(<<"dfn"/utf8>>, Attrs, Children).
-file("src/html.gleam", 588).
?DOC(" Represents a nested browsing context, embedding another HTML page into the current one.\n").
-spec iframe(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
iframe(Attrs, Children) ->
mellie:element(<<"iframe"/utf8>>, Attrs, Children).
-file("src/html.gleam", 593).
?DOC(" Links a given piece of content with a machine-readable translation. If the content is time- or date-related, the <time> element must be used.\n").
-spec data(list({binary(), binary()}), list(presentable_soup:element_tree())) -> presentable_soup:element_tree().
data(Attrs, Children) ->
mellie:element(<<"data"/utf8>>, Attrs, Children).