Commit acb49f78 authored by Greg Wilson's avatar Greg Wilson
Browse files

Merge branch 'move-data' of https://github.com/fmichonneau/styles into fmichonneau-move-data

parents 8237ab50 ea8797f2
Loading
Loading
Loading
Loading
+0 −0

Empty file added.

+18 −10
Original line number Diff line number Diff line
generate_md_episodes <- function() {

    if (require("knitr")) {
        if (packageVersion("knitr") < '1.9.19') {
            stop("knitr must be version 1.9.20 or higher")
@@ -7,9 +9,15 @@ if (require("knitr")) {
    if (!require("stringr"))
        stop("The package stringr is required for generating the lessons.")

    ## 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()