Clojure wrapper around jsass, which is a Java wrapper around libsass.
Add this to your project.clj
[sass "3.2.6"]
To render a file
; using default options
(render-file-path "public/test.scss")
; with options
(render-file-path "public/test.scss" :property-syntax :new :style :compressed)
To render a resource
; using default options
(render-resource-path "test.scss")
; with options
(render-resource-path "test.scss" :load-paths ["src/stylesheets"])
Rendering a string
; using default options
(render-string "$blue: #3bbfce; .content-navigation { border-color: $blue; }")
; ".content-navigation{border-color:#3bbfce}"
; with options
(render-string "$blue: #3bbfce; .content-navigation { border-color: $blue; }" :style :compressed :syntax :scss)