Files
AVSDevR.HTMLUtils/man/htmlAppendAttributes.Rd

24 lines
531 B
R

% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/htmlAppendAttributes.R
\name{htmlAppendAttributes}
\alias{htmlAppendAttributes}
\title{Appends attributes to an HTML element}
\usage{
htmlAppendAttributes(el, ...)
}
\arguments{
\item{el}{The element to append the attributes to}
\item{...}{The attribute names to be appended}
}
\value{
The modified element
}
\description{
Appends attributes to an HTML element
}
\examples{
x <- shiny::icon("wrench")
htmlAppendAttributes(x, `role` = "presentation")
}