- compile-file FILENAME #!key kwargsprocedure
- compile-string STRING #!key kwargsprocedure
- compile-from-port PORT #!key kwargsprocedure
compile-file, compile-string, and compile-from-port accept the following keyword arguments:
- output
- [string/port - default 'stdout] The destination for the output. May be a filename, a port, or the symbol 'stdout.
- precision
- [integer - default #f] The precision, in number of digits, for decimal numbers.
- output-style
- [symbol - default #f] One of 'nested, 'expanded, 'compact, or 'compressed. This option controls the formatting of the output CSS.
- source-comments
- [boolean - default 'undefined] This option controls whether comments are placed in the output to identify the line number in the source file where each selector is defined.
- source-map-embed
- [boolean - default 'undefined] Whether to embed sourceMappingUrl as data URI.
- source-map-contents
- [boolean - default 'undefined] Whether to embed include contents in sourcemap files.
- omit-source-map-url
- [boolean - default 'undefined] Whether to disable sourceMappingUrl in CSS output.
- is-indented-syntax-src
- [boolean - default 'undefined] Assume source file format is SASS rather than SCSS.
- indent
- [string - default #f] The string to use for indentation.
- linefeed
- [string - default #f] The string to use for linefeeds.
- input-path
- [string - default #f] Input path for source map generation.
- output-path
- [string - default #f] Output path for source map generation.
- plugin-path
- [string - default #f] A list of paths - semicolon-separated on Windows, colon-separated otherwise.
- include-path
- [string - default #f] A list of paths - semicolon-separated on Windows, colon-separated otherwise.
- source-map-file
- [string - default #f] Path of a source map file. If non-empty, enables source map generation.
- source-map-root
- [string - default #f] Root directory inserted in source maps.
- c-headers
- [default #f] No documentation available.
- c-importers
- [default #f] Overload imports.
- c-functions
- [default #f] List of custom functions callable from SCSS code.