Nothing
# internal runner for rest of package
typr_run <- function(args = character(0), typst = typr_which_typst()) {
cmd <- typst[1]
args <- c(typst[-1], args)
out <- tryCatch(
{
processx::run(
command = cmd, args = args
)
},
error = function(e) {
cli::cli_abort('Problem running `typst`.', parent = e)
}
)
out
}
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.