class Sass::Engine
def initialize(template, options={})
++
to README.rdoc!
When adding options, remember to add information about them
TODO: Add current options to REFRENCE. Remember :filename!
--
See README.rdoc for available options.
template string when render is called.
Creates a new instace of Sass::Engine that will compile the given
def initialize(template, options={}) @options = { :style => :nested, :load_paths => ['.'] }.merge! options @template = template.split(/\r\n|\r|\n/) @lines = [] @constants = {"important" => "!important"} @mixins = {} end