This repository contains the source of R Beginner's Guide book. The book is built using Quarto.
To generate book for O'Reilly, build the book then:
# pak::pak("hadley/htmlbook")
htmlbook::convert_book()
html <- list.files("oreilly", pattern = "[.]html$", full.names = TRUE)
file.copy(html, "../r-for-data-science-2e/", overwrite = TRUE)
pngs <- list.files("oreilly", pattern = "[.]png$", full.names = TRUE, recursive = TRUE)
dest <- gsub("oreilly", "../r-for-data-science-2e/", pngs)
fs::dir_create(unique(dirname(dest)))
file.copy(pngs, dest, overwrite = TRUE)
Then commit and push to atlas.
Please note that rbg uses a Contributor Code of Conduct. By contributing to this book, you agree to abide by its terms.