mirror of
https://github.com/rstudio/shiny.git
synced 2026-02-02 10:45:06 -05:00
30 lines
724 B
R
30 lines
724 B
R
% Generated by roxygen2 (4.0.0): do not edit by hand
|
|
\name{htmlOutput}
|
|
\alias{htmlOutput}
|
|
\alias{uiOutput}
|
|
\title{Create an HTML output element}
|
|
\usage{
|
|
htmlOutput(outputId)
|
|
|
|
uiOutput(outputId)
|
|
}
|
|
\arguments{
|
|
\item{outputId}{output variable to read the value from}
|
|
}
|
|
\value{
|
|
An HTML output element that can be included in a panel
|
|
}
|
|
\description{
|
|
Render a reactive output variable as HTML within an application page. The
|
|
text will be included within an HTML \code{div} tag, and is presumed to
|
|
contain HTML content which should not be escaped.
|
|
}
|
|
\details{
|
|
\code{uiOutput} is intended to be used with \code{renderUI} on the
|
|
server side. It is currently just an alias for \code{htmlOutput}.
|
|
}
|
|
\examples{
|
|
htmlOutput("summary")
|
|
}
|
|
|