class Sass::Engine

def render

Raises:
  • (ArgumentError) - if the document uses an unknown encoding with `@charset`
  • (Encoding::UndefinedConversionError) - if the source encoding
  • (Sass::SyntaxError) - if there's an error in the document

Returns:
  • (String) - The CSS
def render
  return _render unless @options[:quiet]
  Haml::Util.silence_haml_warnings {_render}
end