You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
This would help make comments more concise and readable, since \emph{foo} could be replaced by **foo**, \code{bar} would become bar (just in backticks), and \code{\link[=func]{func()} becomes [func()].
The roxygen tags @md and @noMd to parse roxygen chunks with/without markdown for a single chunk.
Description
This would help make comments more concise and readable, since
\emph{foo}
could be replaced by**foo**
,\code{bar}
would becomebar
(just in backticks), and\code{\link[=func]{func()}
becomes[func()]
.The roxygen tags
@md
and@noMd
to parse roxygen chunks with/without markdown for a single chunk.References
https://cran.r-project.org/web/packages/roxygen2/vignettes/markdown.html
The text was updated successfully, but these errors were encountered: