class Temple::HTML::Pretty

@api public

def call(exp)

def call(exp)
  @pretty ? [:multi, preamble, compile(exp)] : super
end

def indent

def indent
  "\n" + (options[:indent] || '') * @indent
end

def initialize(opts = {})

def initialize(opts = {})
  super
  @indent_next = nil
  @indent = 0
  @pretty = options[:pretty]
  @pre_tags = @format != :xml && Regexp.union(options[:pre_tags].map {|t| "<#{t}" })
end

def on_dynamic(code)

def on_dynamic(code)
  return [:dynamic, code] unless @pretty
  indent_next, @indent_next = @indent_next, false
  [:dynamic, "::Temple::Utils.indent_dynamic((#{code}), #{indent_next.inspect}, #{indent.inspect}#{@pre_tags ? ', ' + @pre_tags_name : ''})"]
end

def on_html_comment(content)

def on_html_comment(content)
  return super unless @pretty
  result = [:multi, [:static, tag_indent('comment')], super]
  @indent_next = false
  result
end

def on_html_doctype(type)

def on_html_doctype(type)
  return super unless @pretty
  [:multi, [:static, tag_indent('doctype')], super]
end

def on_html_tag(name, attrs, content = nil)

def on_html_tag(name, attrs, content = nil)
  return super unless @pretty
  name = name.to_s
  closed = !content || (empty_exp?(content) && options[:autoclose].include?(name))
  @pretty = false
  result = [:multi, [:static, "#{tag_indent(name)}<#{name}"], compile(attrs)]
  result << [:static, (closed && @format != :html ? ' /' : '') + '>']
  @pretty = !@pre_tags || !options[:pre_tags].include?(name)
  if content
    @indent += 1
    result << compile(content)
    @indent -= 1
  end
  unless closed
    indent = tag_indent(name)
    result << [:static, "#{content && !empty_exp?(content) ? indent : ''}</#{name}>"]
  end
  @pretty = true
  result
end

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".freeze) if @indent_next
    content = content.gsub("\n".freeze, indent)
  end
  @indent_next = false
  [:static, content]
end

def preamble

def preamble
  return [:multi] unless @pre_tags
  @pre_tags_name = unique_name
  [:code, "#{@pre_tags_name} = /#{@pre_tags.source}/"]
end

def tag_indent(name)

Return indentation before tag
def tag_indent(name)
  if @format == :xml
    flag = @indent_next != nil
    @indent_next = true
  else
    flag = @indent_next != nil && (@indent_next || options[:indent_tags].include?(name))
    @indent_next = options[:indent_tags].include?(name)
  end
  flag ? indent : ''
end