#' Open UserGuide of the package
#'
#' @param ext extension of the book to open: 'html', 'pdf'
#'
#' @importFrom utils browseURL
#'
#' @export
open_guide <- function(ext = "html") {
if (ext == "html") {
guide_path <- system.file("report/_book/index.html", package = "buildtools")
} else if (ext == "pdf") {
guide_path <- system.file("report/_book/report.pdf", package = "buildtools")
} else {
guide_path <- system.file(paste0("report/_book/report.", ext[1]), package = "buildtools")
}
browseURL(paste0("file://", guide_path))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.