Copyright | (C) 2015 Braden Walters |
---|---|
License | MIT (see LICENSE file) |
Maintainer | Braden Walters <vc@braden-walters.info> |
Stability | experimental |
Portability | ghc |
Safe Haskell | None |
Language | Haskell2010 |
- sassCompiler :: Compiler (Item String)
- sassCompilerWith :: SassOptions -> Compiler (Item String)
- renderSass :: Item String -> Compiler (Item String)
- renderSassWith :: SassOptions -> Item String -> Compiler (Item String)
- selectFileType :: SassOptions -> String -> Maybe SassOptions
- sassDefConfig :: SassOptions
- module Text.Sass.Options
Documentation
sassCompiler :: Compiler (Item String) Source #
Compiles a SASS file into CSS. Use the file extension to determine SCSS from SASS formatting.
sassCompilerWith :: SassOptions -> Compiler (Item String) Source #
Compiles a SASS file into CSS with options. The file extension will not be used to determine SCSS from SASS formatting.
renderSass :: Item String -> Compiler (Item String) Source #
Compiles a SASS file item into CSS. Use the file extension to determine SCSS from SASS formatting.
renderSassWith :: SassOptions -> Item String -> Compiler (Item String) Source #
Compiles a SASS file item into CSS with options. The file extension will not be used to determine SCSS from SASS formatting.
selectFileType :: SassOptions -> String -> Maybe SassOptions Source #
Use the file extension to determine whether to use indented syntax.
sassDefConfig :: SassOptions Source #
Default sass configuration.
module Text.Sass.Options