https://github.com/ijlyttle/vignettebuild
Rreproducible example for vignette-building.
https://github.com/ijlyttle/vignettebuild
Last synced: 4 months ago
JSON representation
Rreproducible example for vignette-building.
- Host: GitHub
- URL: https://github.com/ijlyttle/vignettebuild
- Owner: ijlyttle
- License: other
- Created: 2017-03-13T03:21:30.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-14T03:07:42.000Z (over 9 years ago)
- Last Synced: 2025-10-19T18:02:06.428Z (8 months ago)
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# vignettebuild
The goal of vignettebuild is to try to illuminate some confusion/difficulty I am having getting `.Rbuildignore` to do what I want.
There are three interesting files in this repository:
- `vignettes/i_get_built.Rmd`, has `vignettes:` in yaml header
- `vignettes/i_do_not_get_built.Rmd`, does not have `vignettes:` in yaml header
- `.Rbuildignore`, which contains references to both vignette files
When I run `devtools::build()` then inspect the `tar.gz` file, I see `i_get_built.Rmd` and `i_get_built.html` in its `inst/doc` directory.
## Installation
You can install vignettebuild from github with:
```R
# install.packages("devtools")
devtools::install_github("vignettebuild/ijlyttle")
```