R v4.1.2, gt v0.4.0.
Any time I use gtsave(), the arguments filename and path seem to be outright ignored.
The following code is an example of what I implement:
gtcars %>%
gt(rowname_col = "model") %>%
gtsave(
filename = "gtcars.html",
path = "~/My_Project/output/"
)
I found that there are files created in the filepath listed when I use tempdir().
Am I missing something with the implementation?