What is the appropriate syntax to add an itemized list to roxygen2, for instance, in the @details section? Can I create a latex list environment?
It seems that line breaks are simply ignored, i.e.
#' @details text describing parameter inputs in more detail
#'
#' parameter 1: stuff
#'
#' parameter 2: stuff
thanks!
\describe{}
,\itemize{}
as in the R extensions manual work ... ? – Vuong