R/open_pkgdown.R

Defines functions open_pkgdown

Documented in open_pkgdown

#' Open pkgdown site of the package
#'
#' @importFrom utils browseURL
#'
#' @export
open_pkgdown <- function() {
      guide_path <- system.file('docs/index.html', package = 'jimstools')
      if (guide_path == "") {
        stop('There is no pkgdown site in ', 'docs/index.html')
      }

  browseURL(paste0('file://', guide_path))
}
jimbrig/jimstools documentation built on Sept. 12, 2022, 12:08 p.m.