-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'move-data' of https://github.com/fmichonneau/styles int…
…o fmichonneau-move-data
- Loading branch information
Showing
2 changed files
with
18 additions
and
10 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() |