sass (version 0.3.0)

as_sass: List to Sass converter

Description

Converts multiple types of inputs to a single Sass input string for sass.

Usage

as_sass(input)

Arguments

input

Either a

  • raw Sass string

  • named list containing variable names and values

  • Sass-like file name.

Value

a single character value to be supplied to sass

Details

Note that the LibSass compiler expects .sass files to use the Sass Indented Syntax.

See Also

Visit https://sass-lang.com/documentation/file.SASS_REFERENCE.html#import for more details.

Examples

Run this code
# NOT RUN {
# 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; }"
   )
)

# }
# NOT RUN {
# 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 DataCamp Workspace