@hackage hsass0.8.0

Integrating Sass into Haskell applications.

This package provides quite simple (but not too simple) API for compilation of Sass code. It uses libsass (hlibsass) underneath, so the code it parses/generates should be compatible with original Sass implementation (or at least sassc). This package tries to minimize C API usage, so the only place where it is used is in the compileFile / compileString methods. This allows us to stay pure as long as we can and not waste performance for going back and forth. If you feel that compilation options constrain you too much, you may use rest of modules without it. With them, you can use Haskell types and mechanisms to manage libsass's data(eg. importers, options, values) and modify compilation process as you like.