bookdown_render {fabR}R Documentation

Render a bookdown into a bookdown site

Description

This helper function renders an existing bookdown folder (containing at least 'index.Rmd file)

Usage

bookdown_render(bookdown_path, overwrite = FALSE)

Arguments

bookdown_path

A character string identifying the folder path where the bookdown report files are.

overwrite

whether to overwrite existing files. FALSE by default.

Value

A folder containing htlm files (in docs, ...) generated from a bookdown report.

See Also

bookdown_template(),bookdown_open()

Examples

{

bookdown_path = tempdir()
bookdown_template(bookdown_path, overwrite = TRUE)
bookdown_render(bookdown_path, overwrite = TRUE)

}


[Package fabR version 2.1.0 Index]