Slim engine which transforms slim code to executable ruby code @api public
# File lib/slim/engine.rb, line 25 def initialize(opts = {}) super deprecated = {} deprecated[:merge_attrs] = options[:attr_delimiter] if options.include? :attr_delimiter deprecated[:attr_quote] = options[:attr_wrapper] if options.include? :attr_wrapper @options = Temple::ImmutableHash.new(deprecated, @options) unless deprecated.empty? end