Turn on Markdown support for the healthgpsrvis package :
Since we’re updating an existing package, running usethis::use_roxygen_md() will modify the DESCRIPTION (to include Roxygen: [list](https://rdrr.io/r/base/list.html)(markdown = TRUE)) and prompt us to use the roxygen2md package to convert the existing docs.
Once the package roxygen2md is downloaded, run roxygen2md::roxygen2md() to convert existing Rd comments to markdown.
Turn on Markdown support for the
healthgpsrvis
package :usethis::use_roxygen_md()
will modify theDESCRIPTION
(to includeRoxygen: [list](https://rdrr.io/r/base/list.html)(markdown = TRUE)
) and prompt us to use the roxygen2md package to convert the existing docs.roxygen2md
is downloaded, runroxygen2md::roxygen2md()
to convert existingRd
comments to markdown.devtools::document()
when you're done.devtools::check()
.