How can I display NEWS on the html help page of the R package?

The news()R function's help page says:

he tries to read his news in a structured form from the files' Inst / NEWS.Rd, 'NEWS or' inst / NEWS (in that order).

Having done this and installing the package, we get (under the windows) a link to the NEWS file at the top of the html page opened by the command help(package=packagename). For example, if you installed party, you can try

help(package="party")

This only works with files named NEWS. When we provide the NEWS.Rd file instead, there is no link to the news. Try

help(package="survival")

Is there any way to get this link when we provide the NEWS.Rd file?

Thank you for your help.

+5
source share
1 answer

The problem is resolved with R 3.0.0.

, , Rd, \code{}, , NEWS.Rd html.

+1

All Articles