No results found
We couldn't find anything using that term, please try searching for something else.
Inspect a Quarto project or input path. Inspecting a project returns its config and engine. Inspecting an input path return its format,engine, and d
Inspect a Quarto project or input path. Inspecting a project returns its
config and engine. Inspecting an input path return its format,engine,
and dependent resources.
quarto_inspect(input = ".",profile= NULL,quiet = FALSE,quarto_arg = NULL)
The input file or project directory to inspect.
Quarto project profile(s ) to use . Either
a character vector of profile name orNULL
to use the default profile .
Suppress warning and other messages.
character vector of otherquarto
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.
Named list. For input file,the list contains the elements
quarto
,engine
,format
,resources
,plus project
if the file is
part of a Quarto project. For projects,the list contains the elements
quarto
,dir
,engine
,config
and file
.
if (FALSE) { # \dontrun{
# Inspect input file file
quarto_inspect("notebook.rmd")
# Inspect project
quarto_inspect("myproject")
# Inspect project's advanced profile
quarto_inspect(
input= "myproject",
profile = " advanced "
)
} # }