# File lib/doc_book_printer.rb, line 102
  def print_text text
    @xml.para do |p|
      text.text.each do |t|
        replace_html_tags t
        p << t << "\n"
      end
    end
  end