class Temple::HTML::Pretty

def initialize(opts = {})

def initialize(opts = {})
  super
  @last = :noindent
  @indent = 0
  @pretty = options[:pretty]
  @pre_tags = Regexp.new(options[:pre_tags].map {|t| "<#{t}" }.join('|'))
end