tachys/html/element/
elements.rs

1use crate::{
2    html::{
3        attribute::{Attr, Attribute, AttributeValue, NextAttribute},
4        element::{ElementType, ElementWithChildren, HtmlElement},
5    },
6    view::Render,
7};
8use std::fmt::Debug;
9
10macro_rules! html_element_inner {
11    (
12        #[$meta:meta]
13        $tag:ident
14        $struct_name:ident
15        $ty:ident
16        [$($attr:ty),*]
17        $escape:literal
18    ) => {
19        paste::paste! {
20            #[$meta]
21            #[track_caller]
22            pub fn $tag() -> HtmlElement<$struct_name, (), ()>
23            where
24
25            {
26                HtmlElement {
27                    #[cfg(any(debug_assertions, leptos_debuginfo))]
28                    defined_at: std::panic::Location::caller(),
29                    tag: $struct_name,
30                    attributes: (),
31                    children: (),
32                }
33            }
34
35            #[$meta]
36            #[derive(Debug, Copy, Clone, PartialEq, Eq)]
37            pub struct $struct_name;
38
39            // Typed attribute methods
40            impl<At, Ch> HtmlElement<$struct_name, At, Ch>
41            where
42                At: Attribute,
43                Ch: Render,
44
45            {
46                $(
47                    #[doc = concat!("The [`", stringify!($attr), "`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/", stringify!($tag), "#", stringify!($attr) ,") attribute on `<", stringify!($tag), ">`.")]
48                    pub fn $attr<V>(self, value: V) -> HtmlElement <
49                        $struct_name,
50                        <At as NextAttribute>::Output<Attr<$crate::html::attribute::[<$attr:camel>], V>>,
51                        Ch
52                    >
53                    where
54                        V: AttributeValue,
55                        At: NextAttribute,
56                        <At as NextAttribute>::Output<Attr<$crate::html::attribute::[<$attr:camel>], V>>: Attribute,
57                    {
58                        let HtmlElement {
59                            #[cfg(any(debug_assertions, leptos_debuginfo))]
60                            defined_at,
61                            tag,
62                            children,
63                            attributes
64                        } = self;
65                        HtmlElement {
66                            #[cfg(any(debug_assertions, leptos_debuginfo))]
67                            defined_at,
68                            tag,
69                            children,
70                            attributes: attributes.add_any_attr($crate::html::attribute::$attr(value)),
71                        }
72                    }
73                )*
74            }
75
76            impl ElementType for $struct_name {
77                type Output = web_sys::$ty;
78
79                const TAG: &'static str = stringify!($tag);
80                const SELF_CLOSING: bool = false;
81                const ESCAPE_CHILDREN: bool = $escape;
82                const NAMESPACE: Option<&'static str> = None;
83
84                #[inline(always)]
85                fn tag(&self) -> &str {
86                    Self::TAG
87                }
88            }
89
90            impl ElementWithChildren for $struct_name {}
91        }
92    };
93}
94
95macro_rules! html_elements {
96	($(
97        #[$meta:meta]
98        $tag:ident
99        $ty:ident
100        [$($attr:ty),*]
101        $escape:literal
102      ),*
103      $(,)?
104    ) => {
105        paste::paste! {
106            $(html_element_inner! {
107                #[$meta]
108                $tag
109                [<$tag:camel>]
110                $ty
111                [$($attr),*]
112                $escape
113            })*
114        }
115    }
116}
117
118macro_rules! html_self_closing_elements {
119	($(
120        #[$meta:meta]
121        $tag:ident $ty:ident [$($attr:ty),*] $escape:literal
122      ),*
123      $(,)?
124    ) => {
125        paste::paste! {
126            $(
127                #[$meta]
128                #[track_caller]
129                pub fn $tag() -> HtmlElement<[<$tag:camel>], (), ()>
130                where
131
132                {
133                    HtmlElement {
134                        #[cfg(any(debug_assertions, leptos_debuginfo))]
135                        defined_at: std::panic::Location::caller(),
136                        attributes: (),
137                        children: (),
138                        tag: [<$tag:camel>],
139                    }
140                }
141
142                #[$meta]
143                #[derive(Debug, Copy, Clone, PartialEq, Eq)]
144                pub struct [<$tag:camel>];
145
146                // Typed attribute methods
147                impl<At> HtmlElement<[<$tag:camel>], At, ()>
148                where
149                    At: Attribute,
150                {
151                    $(
152                        #[doc = concat!("The [`", stringify!($attr), "`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/", stringify!($tag), "#", stringify!($attr) ,") attribute on `<", stringify!($tag), ">`.")]
153                        pub fn $attr<V>(self, value: V) -> HtmlElement<
154                            [<$tag:camel>],
155                            <At as NextAttribute>::Output<Attr<$crate::html::attribute::[<$attr:camel>], V>>,
156                            (),
157                        >
158                        where
159                            V: AttributeValue,
160                            At: NextAttribute,
161                            <At as NextAttribute>::Output<Attr<$crate::html::attribute::[<$attr:camel>], V>>: Attribute,
162                        {
163                            let HtmlElement {
164                                 #[cfg(any(debug_assertions, leptos_debuginfo))]
165                                 defined_at,
166                                tag,
167                                children,
168                                attributes,
169                            } = self;
170                            HtmlElement {
171                                #[cfg(any(debug_assertions, leptos_debuginfo))]
172                                defined_at,
173                                tag,
174                                children,
175                                attributes: attributes.add_any_attr($crate::html::attribute::$attr(value)),
176                            }
177                        }
178                    )*
179                }
180
181                impl ElementType for [<$tag:camel>] {
182                    type Output = web_sys::$ty;
183
184                    const TAG: &'static str = stringify!($tag);
185                    const SELF_CLOSING: bool = true;
186                    const ESCAPE_CHILDREN: bool = $escape;
187                    const NAMESPACE: Option<&'static str> = None;
188
189                    #[inline(always)]
190                    fn tag(&self) -> &str {
191                        Self::TAG
192                    }
193                }
194            )*
195		}
196    }
197}
198
199html_self_closing_elements! {
200    /// The `<area>` HTML element 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.
201    area HtmlAreaElement [alt, coords, download, href, hreflang, ping, rel, shape, target] true,
202    /// The `<base>` HTML element specifies the base URL to use for all relative URLs in a document. There can be only one `<base>` element in a document.
203    base HtmlBaseElement [href, target] true,
204    /// The `<br>` HTML element 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.
205    br HtmlBrElement [] true,
206    /// The `<col>` HTML element defines a column within a table and is used for defining common semantics on all common cells. It is generally found within a colgroup element.
207    col HtmlTableColElement [span] true,
208    /// The `<embed>` HTML element 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.
209    embed HtmlEmbedElement [height, src, r#type, width] true,
210    /// The `<hr>` HTML element 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.
211    hr HtmlHrElement [] true,
212    /// The `<img>` HTML element embeds an image into the document.
213    img HtmlImageElement [alt, attributionsrc, crossorigin, decoding, elementtiming, fetchpriority, height, ismap, loading, referrerpolicy, sizes, src, srcset, usemap, width] true,
214    /// The `<input>` HTML element is used to create interactive controls for web-based forms in order 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.
215    input HtmlInputElement [accept, alt, autocomplete, capture, checked, dirname, disabled, form, formaction, formenctype, formmethod, formnovalidate, formtarget, height, list, max, maxlength, min, minlength, multiple, name, pattern, placeholder, popovertarget, popovertargetaction, readonly, required, size, src, step, r#type, value, width] true,
216    ///	The `<link>` HTML element 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.
217    link HtmlLinkElement [r#as, blocking, crossorigin, fetchpriority, href, hreflang, imagesizes, imagesrcset, integrity, media, rel, referrerpolicy, sizes, r#type] true,
218    ///	The `<meta>` HTML element represents Metadata that cannot be represented by other HTML meta-related elements, like base, link, script, style or title.
219    meta HtmlMetaElement [charset, content, http_equiv, name] true,
220    /// The `<source>` HTML element specifies multiple media resources for the picture, the audio element, or the video element. It is an empty 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.
221    source HtmlSourceElement [src, r#type, srcset, sizes, media, height, width] true,
222    /// The `<track>` HTML element is 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.
223    track HtmlTrackElement [default, kind, label, src, srclang] true,
224    /// The `<wbr>` HTML element 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.
225    wbr HtmlElement [] true,
226}
227
228html_elements! {
229    /// The `<a>` HTML element (or anchor element), with its href attribute, creates a hyperlink to web pages, files, email addresses, locations in the same page, or anything else a URL can address.
230    a HtmlAnchorElement [download, href, hreflang, ping, referrerpolicy, rel, target, r#type ] true,
231    /// The `<abbr>` HTML element represents an abbreviation or acronym; the optional title attribute can provide an expansion or description for the abbreviation. If present, title must contain this full description and nothing else.
232    abbr HtmlElement [] true,
233    /// The `<address>` HTML element indicates that the enclosed HTML provides contact information for a person or people, or for an organization.
234    address HtmlElement [] true,
235    /// The `<article>` HTML element 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, or a blog entry, a product card, a user-submitted comment, an interactive widget or gadget, or any other independent item of content.
236    article HtmlElement [] true,
237    /// The `<aside>` HTML element 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.
238    aside HtmlElement [] true,
239    /// The `<audio>` HTML element is 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.
240    audio HtmlAudioElement [autoplay, controls, crossorigin, r#loop, muted, preload, src] true,
241    /// The `<b>` HTML element is 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; instead, you should use the CSS font-weight property to create boldface text, or the strong element to indicate that text is of special importance.
242    b HtmlElement [] true,
243    /// The `<bdi>` HTML element 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.
244    bdi HtmlElement [] true,
245    /// The `<bdo>` HTML element overrides the current directionality of text, so that the text within is rendered in a different direction.
246    bdo HtmlElement [] true,
247    /// The `<blockquote>` HTML element indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation (see Notes for how to change it). 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.
248    blockquote HtmlQuoteElement [cite] true,
249    /// The `<body>` HTML element represents the content of an HTML document. There can be only one `<body>` element in a document.
250    body HtmlBodyElement [] true,
251    /// The `<button>` HTML element represents a clickable button, used to submit forms or anywhere in a document for accessible, standard button functionality.
252    button HtmlButtonElement [command, commandfor, disabled, form, formaction, formenctype, formmethod, formnovalidate, formtarget, name, r#type, value, popovertarget, popovertargetaction] true,
253    /// Use the HTML `<canvas>` element with either the canvas scripting API or the WebGL API to draw graphics and animations.
254    canvas HtmlCanvasElement [height, width] true,
255    /// The `<caption>` HTML element specifies the caption (or title) of a table.
256    caption HtmlTableCaptionElement [] true,
257    /// The `<cite>` HTML element is used to describe a reference to a cited creative work, and must include the title of that work. The reference may be in an abbreviated form according to context-appropriate conventions related to citation metadata.
258    cite HtmlElement [] true,
259    /// The `<code>` HTML element 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 default monospace font.
260    code HtmlElement [] true,
261    /// The `<colgroup>` HTML element defines a group of columns within a table.
262    colgroup HtmlTableColElement [span] true,
263    /// The `<data>` HTML element 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.
264    data HtmlDataElement [value] true,
265    /// The `<datalist>` HTML element contains a set of option elements that represent the permissible or recommended options available to choose from within other controls.
266    datalist HtmlDataListElement [] true,
267    /// The `<dd>` HTML element provides the description, definition, or value for the preceding term (dt) in a description list (dl).
268    dd HtmlElement [] true,
269    /// The `<del>` HTML element 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.
270    del HtmlModElement [cite, datetime] true,
271    /// The `<details>` HTML element 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.
272    details HtmlDetailsElement [name, open] true,
273    /// The `<dfn>` HTML element is used to indicate the term being defined within the context of a definition phrase or sentence. The p element, the dt/dd pairing, or the section element which is the nearest ancestor of the `<dfn>` is considered to be the definition of the term.
274    dfn HtmlElement [] true,
275    /// The `<dialog>` HTML element represents a dialog box or other interactive component, such as a dismissible alert, inspector, or subwindow.
276    dialog HtmlDialogElement [open] true,
277    /// The `<div>` HTML element is 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).
278    div HtmlDivElement [] true,
279    /// The `<dl>` HTML element 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).
280    dl HtmlDListElement [] true,
281    /// The `<dt>` HTML element 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.
282    dt HtmlElement [] true,
283    /// The `<em>` HTML element marks text that has stress emphasis. The `<em>` element can be nested, with each level of nesting indicating a greater degree of emphasis.
284    em HtmlElement [] true,
285    /// The `<fieldset>` HTML element is used to group several controls as well as labels (label) within a web form.
286    fieldset HtmlFieldSetElement [disabled, form, name] true,
287    /// The `<figcaption>` HTML element represents a caption or legend describing the rest of the contents of its parent figure element.
288    figcaption HtmlElement [] true,
289    /// The `<figure>` HTML element 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.
290    figure HtmlElement [] true,
291    /// The `<footer>` HTML element represents a footer for its nearest sectioning content or sectioning root element. A `<footer>` typically contains information about the author of the section, copyright data or links to related documents.
292    footer HtmlElement [] true,
293    /// The `<form>` HTML element represents a document section containing interactive controls for submitting information.
294    form HtmlFormElement [accept_charset, action, autocomplete, enctype, method, name, novalidate, target] true,
295    /// The `<h1>` to `<h6>` HTML elements represent six levels of section headings. `<h1>` is the highest section level and `<h6>` is the lowest.
296    h1 HtmlHeadingElement [] true,
297    /// The `<h1>` to `<h6>` HTML elements represent six levels of section headings. `<h1>` is the highest section level and `<h6>` is the lowest.
298    h2 HtmlHeadingElement [] true,
299    /// The `<h1>` to `<h6>` HTML elements represent six levels of section headings. `<h1>` is the highest section level and `<h6>` is the lowest.
300    h3 HtmlHeadingElement [] true,
301    /// The `<h1>` to `<h6>` HTML elements represent six levels of section headings. `<h1>` is the highest section level and `<h6>` is the lowest.
302    h4 HtmlHeadingElement [] true,
303    /// The `<h1>` to `<h6>` HTML elements represent six levels of section headings. `<h1>` is the highest section level and `<h6>` is the lowest.
304    h5 HtmlHeadingElement [] true,
305    /// The `<h1>` to `<h6>` HTML elements represent six levels of section headings. `<h1>` is the highest section level and `<h6>` is the lowest.
306    h6 HtmlHeadingElement [] true,
307    ///	The `<head>` HTML element contains machine-readable information (metadata) about the document, like its title, scripts, and style sheets.
308    head HtmlHeadElement [] true,
309    /// The `<header>` HTML element 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.
310    header HtmlElement [] true,
311    /// The `<hgroup>` HTML element represents a heading and related content. It groups a single `<h1>–<h6>` element with one or more `<p>`.
312    hgroup HtmlElement [] true,
313    /// The `<html>` HTML element 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.
314    html HtmlHtmlElement [] true,
315    /// The `<i>` HTML element represents a range of text that is set off from the normal text for some reason, such as idiomatic text, technical terms, taxonomical designations, among others. Historically, these have been presented using italicized type, which is the original source of the `<i>` naming of this element.
316    i HtmlElement [] true,
317    /// The `<iframe>` HTML element represents a nested browsing context, embedding another HTML page into the current one.
318    iframe HtmlIFrameElement [allow, allowfullscreen, allowpaymentrequest, height, name, referrerpolicy, sandbox, src, srcdoc, width] true,
319    /// The `<ins>` HTML element 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.
320    ins HtmlElement [cite, datetime] true,
321    /// The `<kbd>` HTML element 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.
322    kbd HtmlElement [] true,
323    /// The `<label>` HTML element represents a caption for an item in a user interface.
324    label HtmlLabelElement [r#for, form] true,
325    /// The `<legend>` HTML element represents a caption for the content of its parent fieldset.
326    legend HtmlLegendElement [] true,
327    /// The `<li>` HTML element is used to represent 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.
328    li HtmlLiElement [value] true,
329    /// The `<main>` HTML element 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.
330    main HtmlElement [] true,
331    /// The `<map>` HTML element is used with area elements to define an image map (a clickable link area).
332    map HtmlMapElement [name] true,
333    /// The `<mark>` HTML element represents text which is marked or highlighted for reference or notation purposes, due to the marked passage's relevance or importance in the enclosing context.
334    mark HtmlElement [] true,
335    /// The `<menu>` HTML element is a semantic alternative to ul. It represents an unordered list of items (represented by li elements), each of these represent a link or other command that the user can activate.
336    menu HtmlMenuElement [] true,
337    /// The `<meter>` HTML element represents either a scalar value within a known range or a fractional value.
338    meter HtmlMeterElement [value, min, max, low, high, optimum, form] true,
339    /// The `<nav>` HTML element 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.
340    nav HtmlElement [] true,
341    /// The `<noscript>` HTML element 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.
342    noscript HtmlElement [] false,
343    /// The `<object>` HTML element represents an external resource, which can be treated as an image, a nested browsing context, or a resource to be handled by a plugin.
344    object HtmlObjectElement [data, form, height, name, r#type, usemap, width] true,
345    /// The `<ol>` HTML element represents an ordered list of items — typically rendered as a numbered list.
346    ol HtmlOListElement [reversed, start, r#type] true,
347    /// The `<optgroup>` HTML element creates a grouping of options within a select element.
348    optgroup HtmlOptGroupElement [disabled, label] true,
349    /// The `<output>` HTML element is a container element into which a site or app can inject the results of a calculation or the outcome of a user action.
350    output HtmlOutputElement [r#for, form, name] true,
351    /// The `<p>` HTML element 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.
352    p HtmlParagraphElement [] true,
353    /// The `<picture>` HTML element contains zero or more source elements and one img element to offer alternative versions of an image for different display/device scenarios.
354    picture HtmlPictureElement [] true,
355    /// The `<portal>` HTML element enables the embedding of another HTML page into the current one for the purposes of allowing smoother navigation into new pages.
356    portal HtmlElement [referrerpolicy, src] true,
357    /// The `<pre>` HTML element 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.
358    pre HtmlPreElement [] true,
359    /// The `<progress>` HTML element displays an indicator showing the completion progress of a task, typically displayed as a progress bar.
360    progress HtmlProgressElement [min, max, value] true,
361    /// The `<q>` HTML element 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.
362    q HtmlQuoteElement [cite] true,
363    /// The `<rp>` HTML element is used to provide fall-back parentheses for browsers that do not support 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.
364    rp HtmlElement [] true,
365    /// The `<rt>` HTML element 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.
366    rt HtmlElement [] true,
367    /// The `<ruby>` HTML element 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.
368    ruby HtmlElement [] true,
369    /// The `<s>` HTML element 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.
370    s HtmlElement [] true,
371    /// The `<samp>` HTML element is 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).
372    samp HtmlElement [] true,
373    /// The `<script>` HTML element is 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.
374    script HtmlScriptElement [r#async, crossorigin, defer, fetchpriority, integrity, nomodule, referrerpolicy, src, r#type, blocking] false,
375    /// The `<search>` HTML element is a container representing the parts of the document or application with form controls or other content related to performing a search or filtering operation.
376    search HtmlElement [] true,
377    /// The `<section>` HTML element 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.
378    section HtmlElement [] true,
379    /// The `<select>` HTML element represents a control that provides a menu of options:
380    select HtmlSelectElement [autocomplete, disabled, form, multiple, name, required, size] true,
381    /// The `<slot>` HTML element—part of the Web Components technology suite—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.
382    slot HtmlSlotElement [name] true,
383    /// The `<small>` HTML element 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.
384    small HtmlElement [] true,
385    /// The `<span>` HTML element is 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 element.
386    span HtmlSpanElement [] true,
387    /// The `<strong>` HTML element indicates that its contents have strong importance, seriousness, or urgency. Browsers typically render the contents in bold type.
388    strong HtmlElement [] true,
389    ///	The `<style>` HTML element contains style information for a document, or part of a document. It contains CSS, which is applied to the contents of the document containing the `<style>` element.
390    style HtmlStyleElement [media, blocking] false,
391    /// The `<sub>` HTML element specifies inline text which should be displayed as subscript for solely typographical reasons. Subscripts are typically rendered with a lowered baseline using smaller text.
392    sub HtmlElement [] true,
393    /// The `<summary>` HTML element 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.
394    summary HtmlElement [] true,
395    /// The `<sup>` HTML element 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.
396    sup HtmlElement [] true,
397    /// The `<table>` HTML element represents tabular data — that is, information presented in a two-dimensional table comprised of rows and columns of cells containing data.
398    table HtmlTableElement [] true,
399    /// The `<tbody>` HTML element encapsulates a set of table rows (tr elements), indicating that they comprise the body of the table (table).
400    tbody HtmlTableSectionElement [] true,
401    /// The `<td>` HTML element defines a cell of a table that contains data. It participates in the table model.
402    td HtmlTableCellElement [colspan, headers, rowspan] true,
403    /// The `<template>` HTML element is 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.
404    template HtmlTemplateElement [] true,
405    /// The `<textarea>` HTML element 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.
406    textarea HtmlTextAreaElement [autocomplete, cols, dirname, disabled, form, maxlength, minlength, name, placeholder, readonly, required, rows, wrap] false,
407    /// The `<tfoot>` HTML element defines a set of rows summarizing the columns of the table.
408    tfoot HtmlTableSectionElement [] true,
409    /// The `<th>` HTML element defines a cell as header of a group of table cells. The exact nature of this group is defined by the scope and headers attributes.
410    th HtmlTableCellElement [abbr, colspan, headers, rowspan, scope] true,
411    /// The `<thead>` HTML element defines a set of rows defining the head of the columns of the table.
412    thead HtmlTableSectionElement [] true,
413    /// The `<time>` HTML element 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.
414    time HtmlTimeElement [datetime] true,
415    ///	The `<title>` HTML element defines the document's title that is shown in a Browser's title bar or a page's tab. It only contains text; tags within the element are ignored.
416    title HtmlTitleElement [] true,
417    /// The `<tr>` HTML element 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.
418    tr HtmlTableRowElement [] true,
419    /// The `<u>` HTML element 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 simple solid underline, but may be altered using CSS.
420    u HtmlElement [] true,
421    /// The `<ul>` HTML element represents an unordered list of items, typically rendered as a bulleted list.
422    ul HtmlUListElement [] true,
423    /// The `<var>` HTML element 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.
424    var HtmlElement [] true,
425    /// The `<video>` HTML element embeds a media player which supports video playback into the document. You can use `<video>` for audio content as well, but the audio element may provide a more appropriate user experience.
426    video HtmlVideoElement [autoplay, controls, controlslist, crossorigin, disablepictureinpicture, disableremoteplayback, height, r#loop, muted, playsinline, poster, preload, src, width] true,
427}
428
429html_element_inner! {
430    /// The `<option>` HTML element is 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.
431    option Option_ HtmlOptionElement [disabled, label, selected, value] true
432}