class Temple::HTML::Pretty

def on_static(content)

def on_static(content)
  return [:static, content] unless @pretty
  unless @pre_tags && @pre_tags =~ content
    content = content.sub(/\A\s*\n?/, "\n") if @indent_next
    content = content.gsub("\n", indent)
  end
  @indent_next = false
  [:static, content]
end