# File lib/formatador.rb, line 90
  def indent(&block)
    @indent += 1
    yield
    @indent -= 1
  end