| Safe Haskell | None |
|---|---|
| Language | Haskell2010 |
Text.Sass.Options
Description
Compilation options.
- data SassOptions = SassOptions {
- sassPrecision :: Int
- sassOutputStyle :: SassOutputStyle
- sassSourceComments :: Bool
- sassSourceMapEmbed :: Bool
- sassSourceMapContents :: Bool
- sassOmitSourceMapUrl :: Bool
- sassIsIndentedSyntax :: Bool
- sassIndent :: String
- sassLinefeed :: String
- sassInputPath :: Maybe FilePath
- sassOutputPath :: Maybe FilePath
- sassPluginPaths :: Maybe [FilePath]
- sassIncludePaths :: Maybe [FilePath]
- sassSourceMapFile :: Maybe FilePath
- sassSourceMapRoot :: Maybe String
- sassFunctions :: Maybe [SassFunction]
- sassHeaders :: Maybe [SassHeader]
- sassImporters :: Maybe [SassImporter]
- sassStripEncodingInfo :: Bool
- defaultSassOptions :: SassOptions
- data SassOutputStyle :: *
Documentation
data SassOptions Source #
Describes compilation options. With the exception of
sassStripEncodingInfo, these correspond to the compilation options of
libsass.
Constructors
| SassOptions | |
Fields
| |
Instances
defaultSassOptions :: SassOptions Source #
The default SassOptions:
sassPrecision= 5sassOutputStyle=SassStyleNestedsassIndent= two spacessassLinefeed="\n"- All other fields default to
FalseorNothing.
data SassOutputStyle :: * #
Defines output style of compiled CSS.
Constructors
| SassStyleNested | |
| SassStyleExpanded | |
| SassStyleCompact | |
| SassStyleCompressed | |
| SassStyleInspect | Marked as internal |
| SassStyleToSass | Marked as internal |
Instances