Nothing
compressed_css <- function(x) {
gsub("\\s+|\\n", "", paste(as.character(x), collapse = ""))
}
expect_css <- function(input, css, output = NULL, ...) {
res <- sass(input, output = output, ...)
if (!is.null(output)) {
res <- read_utf8(res)
}
expect_identical(
compressed_css(res),
compressed_css(css)
)
}
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.