make.packages.html {utils} | R Documentation |
Functions to link and (optionally) re-create the HTML documentation files to reflect all installed packages.
make.packages.html(lib.loc = .libPaths(), packages = TRUE)
lib.loc |
character vector. List of libraries to be included. |
packages |
logical: should be package indices be create. |
This sets up the links from packages in libraries to the ‘.R’
subdirectory of the per-session directory (see tempdir
)
and optionally creates the ‘packages.html’ and ‘index.txt’ files
to point to those links. The slow part is creating those files (as
all the package ‘DESCRIPTION’ files are read).
If a package is available in more than one library tree, all the
copies are linked, after the first with suffix .1
etc.
Invisible logical, indicating if the files were created.
help.start
## Not run:
# to prefer HTML help, put in your .Rprofile
options(htmlhelp=TRUE)
make.packages.html(packages=FALSE)
# this can be slow for large numbers of installed packages.
## End(Not run)