download_rmd_button {minidown} | R Documentation |
Generate an HTML widget to download input Rmd file
Description
The button can self-contain the input data by base64 encoding.
Usage
download_rmd_button(
input = NULL,
text = "Download Rmd",
...,
class = "button",
align = "right",
aside = TRUE,
embed = NULL
)
Arguments
input |
Filename of the input. If |
text |
The text for the hyperlink. |
... |
Arguments passed to the |
class |
HTML class(es) given to the anchor element generated by |
align |
Align the button by CSS's |
aside |
Whether to wrap the anchor element by the aside element. |
embed |
A function to embed file(s).
One of |
Value
shiny.tag
class object.
Examples
set.seed(1L)
input <- tempfile()
writeLines("", input)
download_rmd_button(input)
# Requires zip command
if (interactive()) {
input <- tempdir()
download_rmd_button(input, embed = xfun::embed_dir)
}
[Package minidown version 0.4.0 Index]