Inspect a Quarto project or input path. Inspecting a project returns its config and engines. Inspecting an input path return its formats, engine, and dependent resources.
Arguments
- input
The input file or project directory to inspect.
- profile
Quarto project profile(s) to use. Either a character vector of profile names or
NULL
to use the default profile.- quiet
Suppress warning and other messages, from R and also Quarto CLI (i.e
--quiet
is passed as command line).quarto.quiet
R option orQUARTO_R_QUIET
environment variable can be used to globally override a function call (This can be useful to debug tool that callsquarto_*
functions directly).On Github Actions, it will always be
quiet = FALSE
.- quarto_args
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. Seequarto render --help
for options.