Skip to content

Instantly share code, notes, and snippets.

@daranzolin
Last active January 24, 2023 20:37
Show Gist options
  • Save daranzolin/8f37d90267539094275bca15410cd51c to your computer and use it in GitHub Desktop.
Save daranzolin/8f37d90267539094275bca15410cd51c to your computer and use it in GitHub Desktop.
---
title: "downloadthis reprex"
format: html
include-after-body: button.html
---
# Head1
<br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br> <br>
::: panel-tabset
## tab1
```{r}
library(downloadthis)
x <- "TEST"
mtcars %>%
download_this(
output_name = paste(x, "mtcars data set"),
output_extension = ".csv",
button_label = "Download data",
button_type = "success",
has_icon = TRUE,
icon = "fa fa-save",
id = "wfc-btn"
)
```
## tab2
```{r}
library(downloadthis)
x <- "TEST"
mtcars %>%
download_this(
output_name = paste(x, "mtcars data set"),
output_extension = ".csv",
button_label = "Download data",
button_type = "success",
has_icon = TRUE,
icon = "fa fa-save",
id = "wfc-btn"
)
```
:::
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment