Search variables in a .scss file

search_vars(file)

Arguments

file

File path in which to search for variables.

Value

A data.frame with 2 columns: "variable" and "value".

Examples

# Create a scss file with some variables tmp_scss_file <- tempfile(fileext = ".scss") writeLines("//Some variables\n $color: red;\n $body-bg: #FFF;", tmp_scss_file) # Search for variables search_vars(tmp_scss_file)
#> variable value #> 1 color red #> 2 body-bg #FFF
# Clean up unlink(tmp_scss_file)