Description Usage Arguments Examples
View source: R/paper_card_plain.R
Title
1 | paper_card_plain(title, subtitle, text, ...)
|
... |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | if (interactive()) {
ui <- fluidPage(
paperize(),
paper_card_plain(
title = "The R Programming language",
subtitle = tags$a(href = "https://google.com", "click here"),
text = "R is a programming language and free software environment for statistical
computing and graphics supported by the R Foundation for
Statistical Computing. The R language is widely used among
statisticians and data miners for developing statistical software and data analysis.",
h1(a(href = "https://google.com", "click here")),
)
)
server <- function(input, output) {}
shinyApp(ui = ui, server = server)
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.