knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>"
)

pckgdown functions

Build packgdwn website

Single function to build whole site: "This will generate a docs/ directory. The home page will be generated from your package’s README.md, and a function reference will be generated from the documentation in the man/ directory."

pkgdown::build_site()

Build piece by piece

pkgdown::clean_site (pkg = ".")

-- Initialising site

pkgdown::init_site(pkg = ".")

Building home

pkgdown::build_home(pkg = ".")

Building function reference

pkgdown::build_reference(pkg = ".")

Build vignettes. Note that of 12/15/20 the package ragg is a dependency of pkgdown that doesn't download with pckdown.

pkgdown::build_articles(pkg = ".")
pkgdown::build_news()


brouwern/biodata documentation built on Dec. 31, 2020, 8:58 p.m.