我想尝试在.Rd文件中使用markdown。
我想我在函数的文档末尾看到了@md,使它可以解析markdown。但是没有看到此表,也没有出现原始文本... roxygen是否支持表?
#' makes bar
#' @description
#' prints 2 x
#' @details see this table
#'
#' |a |b |c |
#' |--|--|--|
#' |1 |3 |4 |
#'
#' @param x how much foo
#' @return -
#' @export
#' @family tmp
#' @examples
#' foo(2)
#' @md
foo <- function(x) {
print(2 * x)
}
最佳答案
现在在roxygen2 since the 7.0.0 version中支持markdown表(自2019-11-12开始在CRAN上):
您可以在dedicated roxygen2 vignette中阅读有关此内容的更多信息。
关于r - roxygen2软件包是否支持表格?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/43017168/