html: Print HTML Elements

Description Usage Arguments See Also Examples

Description

Use this function to output HTML code for use in R Markdown documents or otherwise.

Usage

1
  html(..., file = "")

Arguments

...

A set of HTML tag functions. See examples for details.

file

Location to output the generated HTML.

See Also

makeHTMLTag, for making your own tags.

Examples

1
2
3
4
5
html(
  h1("Welcome!"),
  div(class="header", table( tr( td("nested elements are ok") ) ) ),
  footer(class="foot", "HTML5 footer")
)

kevinushey/shinyExtras documentation built on May 20, 2019, 9:20 a.m.