reporter previewer user interface to visualize and manipulate the already added report Cards
Usage
reporter_previewer_ui(
id,
rmd_output = c(html = "html_document", pdf = "pdf_document", powerpoint =
"powerpoint_presentation", word = "word_document"),
rmd_yaml_args = list(author = "NEST", title = "Report", date =
as.character(Sys.Date()), output = "html_document")
)
Arguments
- id
character(1) this shiny module's id.
- rmd_output
character vector with rmarkdown output types,
by default all possible c("pdf_document", "html_document", "powerpoint_presentation", "word_document").
If vector is named then those names will appear in the UI.
- rmd_yaml_args
named list vector with Rmd yaml header fields and their default values.
Default list(author = "NEST", title = "Report", date = Sys.Date(), output = "html_document").
Please update only values at this moment.