Skip to contents

Installs the SLC Quarto extension to the specified directory. This extension provides support for SAS Language Compiler (SLC) code blocks in Quarto documents.

Usage

install_slc_extension(dest_dir = ".", force = FALSE)

Arguments

dest_dir

Character. Directory where the extension should be installed. Defaults to current working directory.

force

Logical. Whether to overwrite existing extension. Defaults to FALSE.

Value

Invisibly returns the path where the extension was installed.

Examples

if (FALSE) { # \dontrun{
# Install extension in current directory
install_slc_extension()

# Install in specific project directory
install_slc_extension("path/to/quarto/project")
} # }