Reflow comment doesn't recognize markdown list in roxygen comments

The reflow comment is a frequently used feature in writing roxygen comments. However the new markdown list supported by roxygen2 will lost its new line and combined in one line.

#' The style (the `...` argument) can be anything of the
#' following:
#' * An R color name, see `colors()`.
#' * A 6- or 8-digit hexa color string, e.g. `#ff0000` means
#'   red. Transparency (alpha channel) values are ignored.
#' * A one-column matrix with three rows for the red, green
#'   and blue channels, as returned by [grDevices::col2rgb()]

become

#' The style (the `...` argument) can be anything of the following: * An R color
#' name, see `colors()`. * A 6- or 8-digit hexa color string, e.g. `#ff0000`
#' means red. Transparency (alpha channel) values are ignored. * A one-column
#' matrix with three rows for the red, green and blue channels, as returned by
#' [grDevices::col2rgb()]
1 Like