rd - Hyperlink in R document -


i writing r document (rd) functions. in markdown, can create hyperlink [google](https://www.google.com). how can replicate in r document?

it seems \link{...} can create link, different looking for.

the link{} macro link other documentation pages.

you can use \href{}{} macro include link webpage, text displayed not link.

example:

\href{http://stackoverflow.com/}{stack overflow} 

in addition official r documentation package development, can read "object documentation" section of hadley's "r packages" book.


Comments