class Temple::HTML::Pretty

def on_static(content)

def on_static(content)
  if @pretty
    if @pre_tags !~ content
      content = content.sub(/\A\s*\n?/, "\n") if options[:indent_tags].include?(@last)
      content = content.gsub("\n", indent)
    end
    @last = :static
  end
  [:static, content]
end