Skip to content

Commit

Permalink
Add first vignette
Browse files Browse the repository at this point in the history
  • Loading branch information
LydiaYW committed Nov 19, 2024
1 parent 984832d commit 56d36f8
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,6 @@
^\.Rproj\.user$
^\.github$
^README\.Rmd$
^Rplots\.pdf$
^doc$
^Meta$
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,6 @@
src/*.o
src/*.so
src/*.dll
inst/doc
/doc/
/Meta/
3 changes: 3 additions & 0 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,8 @@ Roxygen: list(markdown = TRUE)
RoxygenNote: 7.3.1
Encoding: UTF-8
Suggests:
knitr,
rmarkdown,
testthat (>= 3.0.0)
Config/testthat/edition: 3
VignetteBuilder: knitr
2 changes: 2 additions & 0 deletions vignettes/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*.html
*.R
19 changes: 19 additions & 0 deletions vignettes/FirstVignette.Rmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
title: "FirstVignette"
output: rmarkdown::html_vignette
vignette: >
%\VignetteIndexEntry{FirstVignette}
%\VignetteEngine{knitr::rmarkdown}
%\VignetteEncoding{UTF-8}
---

```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>"
)
```

```{r setup}
library(egpkg)
```

0 comments on commit 56d36f8

Please sign in to comment.