is_using_quarto | R Documentation |
This function will check if a directory is using quarto by looking for
_quarto.yml
at its root
at least one .qmd
file in the directory
is_using_quarto(dir = ".", verbose = FALSE)
dir |
The directory to check |
verbose |
print message about the result of the check |
dir.create(tmpdir <- tempfile())
is_using_quarto(tmpdir)
file.create(file.path(tmpdir, "_quarto.yml"))
is_using_quarto(tmpdir)
unlink(tmpdir, recursive = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.