Skip to contents

For use in asis blocks only.

Usage

markdownLink(text, url, title = NULL)

Arguments

text

character(1). Text.

url

character(1). Uniform Resource Locator (URL).

title

character(1). Title.

Value

Markdown-formatted link.

Note

Updated 2021-02-04.

See also

Author

Rory Kirchner, Michael Steinbaugh

Examples

markdownLink(
    text = "R",
    url = "https://www.r-project.org",
    title = "The R Project for Statistical Computing"
)
#> [R](https://www.r-project.org): The R Project for Statistical Computing