parse_roxygen {styler} | R Documentation |
Parse roxygen comments into text
Description
Used to parse roxygen code examples. Removes line break before
\\dontrun{...}
and friends because it does not occur for segments other
than \\dont{...}
and friends.
Usage
parse_roxygen(roxygen)
Arguments
roxygen |
Roxygen comments. |
Examples
styler:::parse_roxygen(c(
"#' @examples",
"#' 1+ 1"
))
styler:::parse_roxygen(c(
"#' @examples 33",
"#'1+ 1"
))
[Package styler version 1.10.3 Index]