module Haml::Filters::Sass

Parses the filtered text with {Sass} to produce CSS output.

Public Instance Methods

render(text) click to toggle source

@see Haml::Filters::Base#render

# File lib/haml/filters.rb, line 310
def render(text)
  ::Sass::Engine.new(text, ::Sass::Plugin.engine_options).render
end