How can I use the bs4
theme in bookdown, such as the one used for the R4DS book
In the _output.yaml
I see the following code, but it doesn't work with my project.
bookdown::bs4_book:
theme:
primary: "#637238"
repo: https://github.com/hadley/r4ds
includes:
in_header: [ga_script.html]
and I get this error when I attempt to build the book
Error: 'bs4_book' is not an exported object from 'namespace:bookdown'
Execution halted
R4DS
package that contains the code for the book format? you can install it bydevtools::install_github("hadley/r4ds")
– Ki