This function calls quarto create project <type> <name>
. It will create a
new directory with the project name and add some skeletons files for the
project type chosen.
quarto_create_project(
name,
type = "default",
dir = ".",
no_prompt = FALSE,
quiet = FALSE,
quarto_args = NULL
)
The name of the project and the directory that will be created.
The type of project to create. As of 1.4, it can be one of
default
, website
, blog
, book
, manuscript
, confluence
.
The directory where to create the new Quarto project.
Do not prompt to confirm approval to download external extension.
Suppress warning and other messages.
Character vector of other quarto
CLI arguments to append
to the Quarto command executed by this function. This is mainly intended for
advanced usage and useful for CLI arguments which are not yet mirrored in a
dedicated parameter of this R function. See quarto render --help
for options.
This function require Quarto 1.4 or higher. Use quarto_version()
to check
the version of Quarto detected.
Quarto documentation on Quarto projects