# File lib/rest_htmlprinter.rb, line 83
  def print_text text
    @html.p do |p|
      text.text.each do |t|
        p << t << "\n"
      end
    end
  end