# Example of regular Sass input
as_sass("body { color: \"blue\"; }")
# There is support for adding variables
as_sass(
list(
list(color = "blue"),
"body { color: $color; }"
)
)
# \donttest{
# Add a file name
someFile <- tempfile("variables")
# Overwrite color to red
write("$color: \"red\";", someFile)
input <-
as_sass(
list(
list(color = "blue"),
sass_file(someFile),
"body { color: $color; }"
)
)
input
# The final body color is red
sass(input)
# }
Run the code above in your browser using DataLab