I am writing an R package and I want to include a table in the R help file, for example. in the @details section. I tried to include the markup code directly:
#' | Tables | Are | Cool | #' | ------------- |:-------------:| -----:|
But this does not give me the desired result. I enabled markup support for the entire package and installed roxygen2 6.0.1. Is there any support for markup tables? Should I use \tabular{} ?
source share