twig.rb 561 B

1234567891011121314151617181920
  1. module Docs
  2. class Twig < UrlScraper
  3. self.type = 'twig'
  4. options[:attribution] = <<-HTML
  5. &copy; 2009&ndash;2016 by SensioLabs<br>
  6. Licensed under the three clause BSD license.
  7. HTML
  8. self.release = '1.24.1'
  9. self.base_url = 'http://twig.sensiolabs.org/'
  10. self.root_path = 'documentation'
  11. html_filters.push 'twig/clean_html', 'twig/entries'
  12. options[:container] = 'div.bd > div.content'
  13. options[:skip_patterns] = [/\Aapi/, /\Alicense/]
  14. options[:skip] = %w(doc/deprecated.html doc/advanced_legacy.html)
  15. end
  16. end