html5 (version 1.0.2)

span: Generate the <span> HTML tag.

Description

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.

Usage

span(
  ...,
  attr = NULL,
  separate = FALSE,
  collapse = "",
  formatted = html5_vars$formatted
)

Value

A HTML tag string.

Arguments

...

A string or vector of content to pass to the tag.

attr

A named list or named vector, names are attribute names and values are attribute values.

separate

TRUE/FALSE, If TRUE, returns separate tags for each item of ...; if FALSE, returns one tag with the items of ... in the tag content.

collapse

A string. If NULL, returns a vector the same length as ... instead of collapsing the tags into one string.

formatted

TRUE/FALSE, if TRUE, HTML will be generated with indents and new lines for readability at the cost of performance. Controlled by setting the environment variable html5_vars$formatted <- TRUE/FALSE

Details

Learn more at https://developer.mozilla.org/en-US/docs/Web/HTML/Element/span.

Examples

Run this code
span(attr = list(class = "test"))

Run the code above in your browser using DataLab