Skip to content
/ sass Public

❗ This is a read-only mirror of the CRAN R package repository. sass — Syntactically Awesome Style Sheets ('Sass'). Homepage: https://rstudio.github.io/sass/https://github.com/rstudio/sass Report bugs for this package: https://github.com/rstudio/sass/issues

License

Notifications You must be signed in to change notification settings

cran/sass

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

sass

R build status CRAN_Status_Badge

<style> pre { border: 1px solid #eee; } pre.r { background-color: #ffffff; } pre.r code { background-color: #ffffff; } pre.css { margin-top: -1.25rem; background-color: #f8f8f8; border-radius: 0; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; } </style>

The sass R package provides bindings to LibSass, a fast Sass compiler written in C++. Sass is a mature and stable CSS extension language that makes styling modern websites less complex and more composable.

Installation

Install the released version of sass from CRAN:

install.packages("sass")

Install the latest development build from GitHub:

# install.packages("remotes")
remotes::install_github("rstudio/sass")

Basic usage

To compile Sass into CSS, provide Sass to the input argument of the sass() function. input can be any of the following:

  • An R string (as in the example below).
  • A named list() defining Sass variables.
  • A sass_file(), sass_import(), or sass_layer().
  • A nested list() comprising of all the above.
library(sass)
sass(input = "
  $size: 50%;
  foo { margin: $size * .33; }
")
<style>foo { margin: 16.5%; } </style>

Learn more

See sass’s overview vignette as well as the official Sass documentation.

Ask a question

If you have a question about sass, try asking one on https://community.rstudio.com:

RStudio Ask a question: sass

About

❗ This is a read-only mirror of the CRAN R package repository. sass — Syntactically Awesome Style Sheets ('Sass'). Homepage: https://rstudio.github.io/sass/https://github.com/rstudio/sass Report bugs for this package: https://github.com/rstudio/sass/issues

Resources

License

Stars

Watchers

Forks

Packages

No packages published