1
0

rdoc.rb 329 B

12345678910111213
  1. module Docs
  2. class Rdoc < FileScraper
  3. self.abstract = true
  4. self.type = 'rdoc'
  5. self.root_path = 'table_of_contents.html'
  6. html_filters.replace 'container', 'rdoc/container'
  7. html_filters.push 'rdoc/entries', 'rdoc/clean_html', 'title'
  8. options[:title] = false
  9. options[:skip] = %w(index.html)
  10. end
  11. end