Get startedGet started for free

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.

This exercise is part of the course

Developing R Packages

View Course

Exercise instructions

  • Build all vignettes in the package with a single function call.

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# Build all package vignettes
___
Edit and Run Code