Nothing
css_combine <- function(stylesheet, file = stdout()) {
bundle <- vapply(stylesheet, read_lines,
FUN.VALUE = character(1), USE.NAMES = FALSE)
compiled <- sass::sass(bundle)
cat("/* CSS generated by juicedown */\n\n", file = file)
cat(compiled, file = file, append = TRUE, sep = "\n")
}
css_find <- function(stylesheets) {
user_file <- file.exists(stylesheets)
if (any(!user_file)) {
system_file <- pkg_file("css", stylesheets[!user_file])
stylesheets[!user_file] <- system_file
}
stylesheets
}
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.