#' Clean site
#'
#' Delete all files in `docs/` (except for `CNAME`).
#'
#' @inheritParams build_site
#' @export
clean_site <- function(pkg = ".") {
pkg <- as_pkgdown(pkg)
if (!dir_exists(pkg$dst_path)) return(invisible())
top_level <- dir_ls(pkg$dst_path)
top_level <- top_level[!path_file(top_level) %in% c("CNAME", "dev")]
is_dir <- is_dir(top_level)
dir_delete(top_level[is_dir])
file_delete(top_level[!is_dir])
invisible(TRUE)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.