Select Git revision
CONTRIBUTING.md
-
Adam Procter authoredAdam Procter authored
After you've reviewed these contribution guidelines, you'll be all set to
contribute to this project.
makePages.R 443 B
# run this to knit the .Rmd to an html file in the docs/ directory for github pages
library(markdown)
library(bookdown)
library(dkUtils)
myParams$repoLoc <- dkUtils::findParentDirectory("weGotThePower")
rmdFile <- paste0(myParams$repoLoc, "/paper/weGotThePower.Rmd")
rmarkdown::render(input = rmdFile,
output_format = "html_document2",
output_file = paste0(myParams$repoLoc, "/docs/weGotThePower.html")
)