Description Usage Arguments Details YAML config See Also
Your NEWS.md
is parsed in to sections based on your use of headings.
1 | build_news(pkg = ".", override = list(), preview = NA)
|
pkg |
Path to package. |
override |
An optional named list used to temporarily override
values in |
preview |
If |
The NEWS.md
file should be formatted with level one headings (#
)
containing the package name and version number, level two headings (##
)
with topic headings and lists of news bullets. Commonly used level two
headings include 'Major changes', 'Bug fixes', or 'Minor changes'.
1 2 3 4 5 6 | # pkgdown 0.1.0.9000
## Major changes
- Fresh approach based on the staticdocs package. Site configuration now based
on YAML files.
|
If the package is available on CRAN, release dates will be added to versions in level-one headings, and "Unreleased" will be added versions that are not on CRAN.
Issues and contributors mentioned in news items are automatically linked to
github if a URL
entry linking to github.com is provided in the package
DESCRIPTION
.
1 2 3 | ## Major changes
- Lots of bug fixes (@hadley, #100)
|
To automatically link to release announcements, include a releases
section.
1 2 3 4 5 6 |
Control whether news is present on one page or multiple pages with the
one_page
field. The default is true
.
1 2 | news:
one_page: false
|
Suppress the default addition of CRAN release dates with:
1 2 | news:
cran_dates: false
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.