Results for “Std.Html.Build.Node”
69 matching declarations
Use module:Std.List, kind:fn, or is:exact. Put a Pudu type after ::.
- Std.Html.Build.Node
Builds HTML by naming a tag as a function and its attributes as methods.
- Std.Html.Build.a
Std.Html.Build.NodeA link, whose destination is set with
href. - Std.Html.Build.article
Std.Html.Build.NodeContent that stands on its own, such as a post or a comment.
- Std.Html.Build.aside
Std.Html.Build.NodeContent related to what surrounds it but separable from it.
- Std.Html.Build.blockquote
Std.Html.Build.NodeA quotation from another source.
- Std.Html.Build.body
Std.Html.Build.NodeThe document's rendered content.
- Std.Html.Build.br
Std.Html.Build.NodeA line break.
- Std.Html.Build.button
Std.Html.Build.NodeA button. Use
submitto make it submit its form. - Std.Html.Build.code
Std.Html.Build.NodeA fragment of code.
- Std.Html.Build.dd
Std.Html.Build.NodeThe description of the term before it.
- Std.Html.Build.details
Std.Html.Build.NodeA disclosure that a reader can open and close.
- Std.Html.Build.dialog
Std.Html.Build.NodeA dialogue box or other interactive component.
- Std.Html.Build.div
Std.Html.Build.NodeA grouping with no meaning of its own, for layout or styling.
- Std.Html.Build.dl
Std.Html.Build.NodeA list of terms and their descriptions.
- Std.Html.Build.document
&Std.Html.Build.Node -> StrRenders a node as a whole document, prefixed with
<!DOCTYPE html>. - Std.Html.Build.dt
Std.Html.Build.NodeA term in a description list.
- Std.Html.Build.em
Std.Html.Build.NodeContent with stress emphasis.
- Std.Html.Build.fieldset
Std.Html.Build.NodeA group of related controls within a form.
- Std.Html.Build.figcaption
Std.Html.Build.NodeThe caption for a figure.
- Std.Html.Build.figure
Std.Html.Build.NodeSelf-contained content with an optional caption.
- Std.Html.Build.footer
Std.Html.Build.NodeClosing content for the page or the section around it.
- Std.Html.Build.form
Std.Html.Build.NodeA group of controls submitted together.
- Std.Html.Build.h1
Std.Html.Build.NodeA first-level heading.
- Std.Html.Build.h2
Std.Html.Build.NodeA second-level heading.
- Std.Html.Build.h3
Std.Html.Build.NodeA third-level heading.
- Std.Html.Build.h4
Std.Html.Build.NodeA fourth-level heading.
- Std.Html.Build.h5
Std.Html.Build.NodeA fifth-level heading.
- Std.Html.Build.h6
Std.Html.Build.NodeA sixth-level heading.
- Std.Html.Build.head
Std.Html.Build.NodeThe document's metadata, which is not rendered.
- Std.Html.Build.header
Std.Html.Build.NodeIntroductory content for the page or the section around it.
- Std.Html.Build.hr
Std.Html.Build.NodeA thematic break between sections of content.
- Std.Html.Build.html
Std.Html.Build.NodeThe root element of a document.
- Std.Html.Build.html
&Std.Html.Build.Node -> Std.Html.HtmlA node with no tag name renders as its children alone, with no element
- Std.Html.Build.img
Std.Html.Build.NodeAn image, whose source is set with
srcand description withalt. - Std.Html.Build.input
Std.Html.Build.NodeA form control. Its kind is set with
kind. - Std.Html.Build.labelFor
Std.Html.Build.NodeA caption for a control. Named
labelForbecauselabelsets an attribute. - Std.Html.Build.legend
Std.Html.Build.NodeThe caption for a fieldset.
- Std.Html.Build.li
Std.Html.Build.NodeOne item of a list.
- Std.Html.Build.link
Std.Html.Build.NodeA relationship to another resource, such as a stylesheet.
- Std.Html.Build.main
Std.Html.Build.NodeThe content particular to this page.
- Std.Html.Build.meta
Std.Html.Build.NodeA piece of document metadata, such as the character set.
- Std.Html.Build.nav
Std.Html.Build.NodeA group of navigation links.
- Std.Html.Build.nothing
Std.Html.Build.NodeA node that renders nothing.
- Std.Html.Build.ol
Std.Html.Build.NodeA list whose order carries meaning.
- Std.Html.Build.option
Std.Html.Build.NodeOne choice within a select.
- Std.Html.Build.p
Std.Html.Build.NodeA paragraph.
- Std.Html.Build.pre
Std.Html.Build.NodeText whose whitespace and line breaks are kept as written.
- Std.Html.Build.progress
Std.Html.Build.NodeThe progress of a task.
- Std.Html.Build.render
&Std.Html.Build.Node -> StrRenders a node on its own, without a doctype.
- Std.Html.Build.script
Std.Html.Build.NodeA script written into the document, or a reference to one.
- Std.Html.Build.section
Std.Html.Build.NodeA themed grouping of content, usually with a heading.
- Std.Html.Build.select
Std.Html.Build.NodeA control offering a list of options.
- Std.Html.Build.small
Std.Html.Build.NodeSide comments such as small print.
- Std.Html.Build.span
Std.Html.Build.NodeA run of inline content with no meaning of its own.
- Std.Html.Build.strong
Std.Html.Build.NodeContent with strong importance.
- Std.Html.Build.style
Std.Html.Build.NodeA stylesheet written into the document.
- Std.Html.Build.summary
Std.Html.Build.NodeThe visible heading of a disclosure.
- Std.Html.Build.table
Std.Html.Build.NodeA table of rows and columns.
- Std.Html.Build.tag
Str -> Std.Html.Build.NodeAn element with the given tag name, for tags without a function here.
- Std.Html.Build.tbody
Std.Html.Build.NodeThe group of rows that make up a table's body.
- Std.Html.Build.td
Std.Html.Build.NodeA data cell.
- Std.Html.Build.textarea
Std.Html.Build.NodeA control for text of more than one line.
- Std.Html.Build.tfoot
Std.Html.Build.NodeThe group of rows that summarise a table.
- Std.Html.Build.th
Std.Html.Build.NodeA header cell, naming a row or a column.
- Std.Html.Build.thead
Std.Html.Build.NodeThe group of rows that head a table.
- Std.Html.Build.time
Std.Html.Build.NodeA time or a date, machine-readable through
at("datetime", ...). - Std.Html.Build.tr
Std.Html.Build.NodeOne row of a table.
- Std.Html.Build.ul
Std.Html.Build.NodeA list whose order carries no meaning.
- Std.Html.Build.words
Str -> Std.Html.Build.NodeText as a node, so it can appear in a list beside elements. Escaped.
