Build package vignettes
Using Knit HTML (or rmarkdown::render()
) is one way to test the build-ability of your vignette. It is best to use the devtools
package functionality to build all vignettes. Doing so allows you to automatically build and update the vignettes, ensuring that they are always up to date with the latest changes in your unitConverter
package. This simplifies the workflow of creating, testing, and maintaining vignettes, saving time and effort in the documentation process.
The devtools
package has been loaded for you along with the package so far, including both dist_conversion.Rmd
and func_conversion.Rmd
files.
Cet exercice fait partie du cours
Developing R Packages
Instructions
- Build all vignettes in the package with a single function call.
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
# Build all package vignettes
___