# File lib/doc_book_printer.rb, line 9
  def initialize
    super()
    @output_dir = "docbook"
    @xml_examples = Hash.new
    @xml_schemas = Hash.new
    @section = 0

    @html_tag_mapping = {
      "tt" => nil,
      "em" => "emphasis",
      "b" => "emphasis",
    }
  end