I have a some roxygen that works like this
#' @return
#' \subsection{foo} {
#' \item{bar}{all about bar}
#' }
and R dies on this saying it doesn't know the macro \item. If I remove the subsection, it works.
#' @return
#' \item{bar}{all about bar}
and this works.
Is there any way to get my bar item in the subsection?