| tags | R Documentation |
A named list of functions, one per HTML5 element. Access individual
tags with tags$div(...), tags$p(...), etc.
tags
An object of class list of length 115.
Named arguments become HTML attributes; unnamed arguments become child nodes or text content.
Pass NA or TRUE as the attribute value to produce a valueless
attribute (e.g. disabled). FALSE or NULL suppresses the
attribute entirely.
Character vectors of length > 1 are collapsed with a space, so
class = c("a", "b") renders as class="a b".
tags$p(class = "lead", "Hello, world!")
render(tags$div(id = "app", tags$h1("Title")))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.