# File lib/earthquake/ext.rb, line 72
  def indent(count, char = ' ')
    (char * count) + gsub(/(\n+)/) { |m| m + (char * count) }
  end