l_web: Open a browser with loon's R documentation webpage

View source: R/l_web.R

l_webR Documentation

Open a browser with loon's R documentation webpage

Description

l_web opens a browser with the relevant page on the official loon documentation website. This is constructed by joining together the information provided by the arguments site/package/directory/page.

Default would be the documentation found at https://great-northern-diver.github.io/loon/.

Usage

l_web(
  page = "index",
  directory = c("home", "reference", "articles"),
  package = c("loon", "loon.data", "loon.ggplot", "loon.tourr", "ggmulti", "zenplots",
    "loon.shiny", "diveR"),
  site = "https://great-northern-diver.github.io",
  ...
)

Arguments

page

relative path to a page (the ".html" part may be omitted)

directory

if "home" (the default) then page is ignored and the browser will open at the home page of the official documentation website. If page refers to a package manual reference, then directory must be "reference"; if page refers to the name of a vignette file, then directory should be "articles"

package

a string identifying the package name having an online documentation (default "loon").

site

the URL of the site (default "https://great-northern-diver.github.io") prefixing the path to the requested documentation.

...

arguments forwarded to browseURL(), e.g. to specify a browser

See Also

l_help,help, vignette

Examples


## Not run: 
l_web()
#
vignette("introduction", package = "loon")
# or
l_web(page = "introduction", directory = "articles")
# or
l_web(package = "loon.data", directory = "reference")
#
help(l_hist)
l_web(page = "l_hist", directory = "reference")

## End(Not run)

loon documentation built on July 9, 2023, 5:48 p.m.