Skip to content

Commit

Permalink
Merge branch 'move-data' of https://github.com/fmichonneau/styles int…
Browse files Browse the repository at this point in the history
…o fmichonneau-move-data
  • Loading branch information
Greg Wilson committed Jun 28, 2016
2 parents 8237ab5 + ea8797f commit acb49f7
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 10 deletions.
Empty file added _episodes_rmd/data/.gitkeep
Empty file.
28 changes: 18 additions & 10 deletions bin/generate_md_episodes.R
Original file line number Diff line number Diff line change
@@ -1,15 +1,23 @@
if (require("knitr")) {
if (packageVersion("knitr") < '1.9.19') {
stop("knitr must be version 1.9.20 or higher")
}
} else stop("knitr 1.9.20 or above is needed to build the lessons.")
generate_md_episodes <- function() {

if (!require("stringr"))
stop("The package stringr is required for generating the lessons.")
if (require("knitr")) {
if (packageVersion("knitr") < '1.9.19') {
stop("knitr must be version 1.9.20 or higher")
}
} else stop("knitr 1.9.20 or above is needed to build the lessons.")

src_rmd <- list.files(pattern = "??-*.Rmd$", path = "_episodes_rmd", full.names = TRUE)
dest_md <- file.path("_episodes", gsub("Rmd$", "md", basename(src_rmd)))
if (!require("stringr"))
stop("The package stringr is required for generating the lessons.")

mapply(function(x, y) {
## find all the Rmd files, and generates the paths for their respective outputs
src_rmd <- list.files(pattern = "??-*.Rmd$", path = "_episodes_rmd", full.names = TRUE)
dest_md <- file.path("_episodes", gsub("Rmd$", "md", basename(src_rmd)))

## knit the Rmd into markdown
mapply(function(x, y) {
knitr::knit(x, output = y)
}, src_rmd, dest_md)

}

generate_md_episodes()

0 comments on commit acb49f7

Please sign in to comment.