Skip to content
Prev 24721 / 63424 Next

(PR#9613) [Wishlist] to uniform help(x) and library(help=x)

What library(help=foo) produces is not HTML and has no hyperlinks, so why 
do you want it displayed in a browser?  If you do want text displayed in a 
browser, you can set options("pager") to point to your browser (or a 
wrapper).

It is no different from other library() help modes, like library() with no 
argument, nor from help(package="foo").

Indeed, the help for help says

htmlhelp: logical (or 'NULL').  If 'TRUE' (which is the default after
           'help.start' has been called), the HTML version of the help
           on the topic will be shown in the browser specified by
           'options("browser")'.

and note 'topic' and 'HTML version'.  Where there is no such help, plain 
text is shown.
On Tue, 17 Apr 2007, lbraglia at gmail.com wrote: