Skip to content
Snippets Groups Projects
Select Git revision
  • 6eb78ce9011f63dd4df59dc2a4688e59b779cd59
  • main default
  • vue-update
  • fixnogg
  • futurenogg
  • positions
  • emoji
  • minorUI
  • markdown
  • stayConnected
  • gm-test
  • shortcut
  • connectPouchDB
  • master protected
14 results

CONTRIBUTING.md

Blame
  • 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")
    
    )