diff options
-rw-r--r-- | .gitattributes | 1 | ||||
-rw-r--r-- | .gitignore | 5 | ||||
-rw-r--r-- | DESCRIPTION | 6 |
3 files changed, 11 insertions, 1 deletions
diff --git a/.gitattributes b/.gitattributes index b4059b4..665ff50 100644 --- a/.gitattributes +++ b/.gitattributes @@ -2,6 +2,7 @@ *.R text *.Rd text +*.Rmd text *.csv text *.rda binary @@ -1,2 +1,7 @@ .RData .Rhistory + +inst/doc + +vignettes/*.html +vignettes/*.R diff --git a/DESCRIPTION b/DESCRIPTION index 035117c..586a139 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -17,10 +17,14 @@ Imports: methods, stats, utils -Suggests: shiny +Suggests: + knitr, + rmarkdown, + shiny Encoding: UTF-8 LazyData: true Roxygen: list(markdown = TRUE) RoxygenNote: 7.2.3 Depends: R (>= 2.10) +VignetteBuilder: knitr |