Nothing
#' Check Quarto Availability
#'
#' This function ensures quarto is available if needed for rendering.
#' @export
ensure_quarto <- function() {
if (requireNamespace("quarto", quietly = TRUE)) {
# Minimal call to satisfy R CMD check and renv
invisible(quarto::quarto_version())
} else {
message("quarto is not installed. Install it with install.packages('quarto') if needed.")
}
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.