epoxy_transform_html {epoxy} | R Documentation |
Concise syntax for expressions inside HTML elements
Description
epoxy_transform_html()
provides a
pug-like syntax for expressions in
HTML that are wrapped in HTML elements.
Syntax
You can specify the HTML element and its id
and class
into which the
text of the expression will be placed. The template is to specify the element
using the syntax below, followed by the R expression, separated by a space:
{{ [<element>][#<id> | .<class>...] expr }}
For example, to place the expression in a <li>
element with id = "food"
and class = "fruit"
, you could write
{{ li#food.fruit fruit_name }}
Each item in the HTML template is optional:
If a specific HTML element is desired, the element name must be first. If no element is specified, the default as set by the
element
argument ofepoxy_transform_html()
will be used.IDs are specified using
#<id>
and only one ID may be presentClasses are written using
.<class>
and as many classes as desired are allowed.
If the expression is a vector, the same element container will be used for each item in the vector.
Finally, if the expression returns HTML, it will be escaped by default. You
can either use htmltools::HTML()
to mark it as safe HTML in R, or you can
write !!expr
in the inline markup: {{ li#food.fruit !!fruit_name }}
.
Usage
epoxy_transform_html(
class = NULL,
element = "span",
collapse = TRUE,
transformer = glue::identity_transformer
)
Arguments
class |
|
element |
|
collapse |
|
transformer |
The transformer to apply to the replacement string. This
argument is used for chaining the transformer functions. By providing a
function to this argument you can apply an additional transformation after
the current transformation. In nearly all cases, you can let
|
Value
A function of text
and envir
suitable for the .transformer
argument of
glue::glue()
.
See Also
Used by default in epoxy_html()
Other epoxy's glue transformers:
epoxy_transform_inline()
,
epoxy_transform()
Examples
epoxy_html("<ul>{{ li letters[1:3] }}</ul>")
epoxy_html("<ul>{{ li.alpha letters[1:3] }}</ul>")
epoxy_html("<ul>{{ li#my-letter letters[7] }}</ul>")
# The default element is used if no element is directly requested
epoxy_html("My name starts with {{ .name-letter letters[7] }}")
epoxy_html(
"{{ h3#title title }}",
title = "Epoxy for HTML"
)
# If your replacement text contains HTML, it's escaped by default.
hello <- "<strong>Hi there!</strong>"
epoxy_html("{{ hello }}")
# You can use !! inline to mark the text as safe HTML...
epoxy_html("{{ !!hello }}")
epoxy_html("{{ button !!hello }}")
# ...or you can use htmltools::HTML() to mark it as safe HTML in R.
hello <- htmltools::HTML("<strong>Hi there!</strong>")
epoxy_html("{{ hello }}")