Starting from version 6.0.0, roxygen supports markdown markup within most roxygen tags. Roxygen uses the commonmark
package, which is based on the CommonMark Reference Implementation to parse these tags. See http://commonmark.org/help/ for more about the parser and the markdown language it supports.
There are two ways to turn on markdown support for a package: globally, at the package level, and locally at the block level.
To turn on markdown for the whole package, insert this entry into the DESCRIPTION
file of the package:
Roxygen: list(markdown = TRUE)
The position of the entry in the file does not matter. After this, all Roxygen documentation will be parsed as markdown.
Alternatively, you can use the @md
tag to turn on markdown support for a single documentation chunk. This is a good option to write any new documentation for existing packages in markdown.
There is also a new @noMd
tag. Use this if you turned on markdown parsing globally, but need to avoid it for a single chunk. This tag is handy if the markdown parser interferes with more complex Rd syntax.
Here is an example roxygen chunk that uses markdown.
#' Use roxygen to document a package.
#'
#' This function is a wrapper for the [roxygen2::roxygenize()] function from
#' the `roxygen2` package. See the documentation and vignettes of
#' that package to learn how to use roxygen.
#'
#' @param pkg package description, can be path or package name. See
#' [as.package()] for more information
#' @param clean,reload Deprecated.
#' @inheritParams roxygen2::roxygenise
#' @seealso [roxygen2::roxygenize()], `browseVignettes("roxygen2")`
#' @export
#' @md
Emphasis and strong (bold) text are supported. For emphasis, put the text between asterisks or underline characters. For strong text, use two asterisks at both sides.
Inline code is supported via backticks.
#' @param ns Optionally, a named vector giving prefix-url pairs, as
#' produced by `xml_ns`. If provided, all names will be explicitly
#' qualified with the ns prefix, i.e. if the element `bar` is defined ...
For blocks of code, put your code between triple backticks:
#' ```
#' pkg <- make_packages(
#' foo1 = { f <- function() print("hello!") ; d <- 1:10 },
#' foo2 = { f <- function() print("hello again!") ; d <- 11:20 }
#' )
#' foo1::f()
#' foo2::f()
#' foo1::d
#' foo2::d
#' dispose_packages(pkg)
#' ```
Note that this is not needed in @examples
, since its contents is formatted as R code, anyway.
Regular Markdown lists are recognized and converted to \enumerate{}
or \itemize{}
lists:
#' There are two ways to use this function:
#' 1. If its first argument is not named, then it returns a function
#' that can be used to color strings.
#' 1. If its first argument is named, then it also creates a
#' style with the given name. This style can be used in
#' `style`. One can still use the return value
#' of the function, to create a style function.
#' The style (the `...` argument) can be anything of the
#' following:
#' * An R color name, see `colors()`.
#' * A 6- or 8-digit hexa color string, e.g. `#ff0000` means
#' red. Transparency (alpha channel) values are ignored.
#' * A one-column matrix with three rows for the red, green
#' and blue channels, as returned by [grDevices::col2rgb()]
Nested lists are also supported.
Note that you do not have leave an empty line before the list. This is different from some markdown parsers.
Markdown hyperlinks work as usual:
URLs inside angle brackets are also automatically converted to hyperlinks:
Markdown notation can be used to create links to other manual pages. There are six kinds of links:
[func()]
. These links will be typeset as code, and they are equavalent to \code{\link[=func]{func()}
.[object]
. These links that not typeset as code, so if you want them as code, enclose them in backticks (inside the brackets).[pkg::func()]
. These links will be typeset as code.[pkg::object]
. These links will not be typeset as code.[link text][object]
. Here object
can be a function, but the link text is not typeset as code.[link text][pkg::object]
. This is not typeset as code.S3/S4 classes can be linked the same way:
#' * [terms][terms.object] becomes \link[=terms.object]{terms}
#' * [abc][abc-class] becomes \link[=abc-class]{abc}
Or a shorthand notation can be used: [abc-class]
is converted to \linkS4class{abc}
and [pkg::abc-class]
is converted to \link[pkg:abc-class]{pkg::abc}
.
The parser recognizes the markdown notation for embedded images. The image files must in the man/figures
directory:
Rd
markupNote that turning on markdown does not turn off the standard Rd
syntax. We suggest that you use the regular Rd
tags in a markdown roxygen chunk only if necessary. The two parsers do occasionally interact, and the markdown parser can pick up and reformat Rd syntax, causing an error, or corrupted manuals.
Leading whitespace is interpreted by the commonmark parser, whereas it is ignored by the Rd
parser (except in \preformatted{}
). Make sure that you only include leading whitespace intentionally, for example for nested lists.
The Commonmark parser does not require an empty line before lists, and this might lead to unintended lists if a line starts with a number followed by a dot, or with an asterisk followed by whitespace:
Links to operators or objects that contain special characters, do not work currently. E.g. to link to the %>%
operator in the magrittr
package, instead of [magrittr::%>%]
, you will need to use the Rd
notation: \code{\link[magrittr]{\%>\%}}
.