Skip to contents

Remove an extension in this folder or project by running quarto remove

Usage

quarto_remove_extension(
  extension = NULL,
  no_prompt = FALSE,
  quiet = FALSE,
  quarto_args = NULL
)

Arguments

extension

The extension name to remove, as in quarto remove <extension-name>.

no_prompt

Do not prompt to confirm approval to download external extension.

quiet

Suppress warning and other messages.

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. See quarto render --help for options.

Value

Returns invisibly TRUE if the extension was removed, FALSE otherwise.

Examples

if (FALSE) { # \dontrun{
# Remove an already installed extension
quarto_remove_extension("quarto-ext/fontawesome")
} # }