#' @title Copy backbone
#'
#' @description This function copies backbone
#'
#' @param cache_dir Cache directory
#' @param package Package
#'
#' @return NULL
#'
#' @examples NULL
copy_backbone <- function(cache_dir = fs::path_home(".tima"),
package = "tima") {
message("Creating cache at ", cache_dir)
fs::dir_create(path = cache_dir)
message("Copying default architecture ...")
fs::dir_copy(
path = system.file(package = package),
new_path = cache_dir,
overwrite = TRUE
)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.