| build_news {pkgsite} | R Documentation |
Build news page
Description
Generates a news page from NEWS.md
Usage
build_news(pkg = ".", quiet = TRUE, preview = FALSE)
Arguments
pkg |
Path to package to document. |
quiet |
If quiet, will suppress output messages
|
preview |
If TRUE, the news page will be opened using a local server (requires the servr package)
|
Value
Invisible TRUE if the news page was built successfully
Examples
## Not run:
build_news()
# Hide build messages
build_news(quiet = TRUE)
# Preview the news page after building
build_news(preview = TRUE)
## End(Not run)