mirror of
https://github.com/rstudio/shiny.git
synced 2026-02-02 10:45:06 -05:00
These functions were temporarily ripped out of Shiny and moved to the htmltools package. We've discovered that it's safe to keep including them in shiny; as long as the functions in shiny and the functions in htmltools are identical, the user won't receive a conflict warning.
102 lines
1.4 KiB
R
102 lines
1.4 KiB
R
#' @export
|
|
a <- htmltools::a
|
|
|
|
#' @export
|
|
br <- htmltools::br
|
|
|
|
#' @export
|
|
code <- htmltools::code
|
|
|
|
#' @export
|
|
div <- htmltools::div
|
|
|
|
#' @export
|
|
em <- htmltools::em
|
|
|
|
#' @export
|
|
h1 <- htmltools::h1
|
|
|
|
#' @export
|
|
h2 <- htmltools::h2
|
|
|
|
#' @export
|
|
h3 <- htmltools::h3
|
|
|
|
#' @export
|
|
h4 <- htmltools::h4
|
|
|
|
#' @export
|
|
h5 <- htmltools::h5
|
|
|
|
#' @export
|
|
h6 <- htmltools::h6
|
|
|
|
#' @export
|
|
hr <- htmltools::hr
|
|
|
|
#' @export
|
|
HTML <- htmltools::HTML
|
|
|
|
#' @export
|
|
img <- htmltools::img
|
|
|
|
#' @export
|
|
includeCSS <- htmltools::includeCSS
|
|
|
|
#' @export
|
|
includeHTML <- htmltools::includeHTML
|
|
|
|
#' @export
|
|
includeMarkdown <- htmltools::includeMarkdown
|
|
|
|
#' @export
|
|
includeScript <- htmltools::includeScript
|
|
|
|
#' @export
|
|
includeText <- htmltools::includeText
|
|
|
|
#' @export
|
|
is.singleton <- htmltools::is.singleton
|
|
|
|
#' @export
|
|
p <- htmltools::p
|
|
|
|
#' @export
|
|
pre <- htmltools::pre
|
|
|
|
#' @export
|
|
singleton <- htmltools::singleton
|
|
|
|
#' @export
|
|
span <- htmltools::span
|
|
|
|
#' @export
|
|
strong <- htmltools::strong
|
|
|
|
#' @export
|
|
tag <- htmltools::tag
|
|
|
|
#' @export
|
|
tagAppendAttributes <- htmltools::tagAppendAttributes
|
|
|
|
#' @export
|
|
tagAppendChild <- htmltools::tagAppendChild
|
|
|
|
#' @export
|
|
tagAppendChildren <- htmltools::tagAppendChildren
|
|
|
|
#' @export
|
|
tagList <- htmltools::tagList
|
|
|
|
#' @export
|
|
tags <- htmltools::tags
|
|
|
|
#' @export
|
|
tagSetChildren <- htmltools::tagSetChildren
|
|
|
|
#' @export
|
|
validateCssUnit <- htmltools::validateCssUnit
|
|
|
|
#' @export
|
|
withTags <- htmltools::withTags
|