search_vars | R Documentation |
Search variables in a .scss file
search_vars(file)
file |
File path in which to search for variables. |
A data.frame
with 2 columns: "variable"
and "value"
.
# 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)
# Clean up
unlink(tmp_scss_file)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.