Skip to content

Commit 41a7763

Browse files
committed
move data/ into _episodes/ and _episodes_rmd/
`generate_md_episodes()` is modified such that datasets storred into _episodes_rmd/data/ needed to knit the episodes, are copied into _episodes/data/, and are made available at the root of the site.
1 parent c565218 commit 41a7763

File tree

3 files changed

+36
-10
lines changed

3 files changed

+36
-10
lines changed
File renamed without changes.

_episodes_rmd/data/.gitkeep

Whitespace-only changes.

bin/generate_md_episodes.R

+36-10
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,41 @@
1-
if (require("knitr")) {
2-
if (packageVersion("knitr") < '1.9.19') {
3-
stop("knitr must be version 1.9.20 or higher")
4-
}
5-
} else stop("knitr 1.9.20 or above is needed to build the lessons.")
1+
generate_md_episodes <- function() {
62

7-
if (!require("stringr"))
8-
stop("The package stringr is required for generating the lessons.")
3+
if (require("knitr")) {
4+
if (packageVersion("knitr") < '1.9.19') {
5+
stop("knitr must be version 1.9.20 or higher")
6+
}
7+
} else stop("knitr 1.9.20 or above is needed to build the lessons.")
98

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

13-
mapply(function(x, y) {
12+
## where the Rmd files and the datasets are located
13+
rmd_path <- "_episodes_rmd"
14+
rmd_data <- file.path(rmd_path, "data")
15+
16+
## where the markdown files and the datasets will end up
17+
dest_path <- "_episodes"
18+
dest_data <- file.path(dest_path, "data")
19+
20+
## find all the Rmd files, and generates the paths for their respective outputs
21+
src_rmd <- list.files(pattern = "??-*.Rmd$", path = rmd_path, full.names = TRUE)
22+
dest_md <- file.path(dest_path, gsub("Rmd$", "md", basename(src_rmd)))
23+
24+
## knit the Rmd into markdown
25+
mapply(function(x, y) {
1426
knitr::knit(x, output = y)
1527
}, src_rmd, dest_md)
28+
29+
30+
## copy the datasets from _episodes_rmd/data to _episodes/data
31+
rmd_data_files <- list.files(path = rmd_data, full.names = TRUE)
32+
dest_data_files <- file.path(dest_data, basename(rmd_data_files))
33+
34+
if (!dir.exists(file.path(dest_data)))
35+
dir.create(file.path(dest_data))
36+
37+
apply(cbind(rmd_data_files, dest_data_files), 1,
38+
function(x) file.copy(x[1], x[2]))
39+
}
40+
41+
generate_md_episodes()

0 commit comments

Comments
 (0)