jquery.rb 467 B

123456789101112131415161718
  1. module Docs
  2. class Jquery < UrlScraper
  3. self.abstract = true
  4. self.type = 'jquery'
  5. html_filters.push 'jquery/clean_html', 'title'
  6. options[:title] = false
  7. options[:container] = '#content'
  8. options[:trailing_slash] = false
  9. options[:skip_patterns] = [/deprecated/, /category\/version/]
  10. options[:attribution] = <<-HTML
  11. &copy; The jQuery Foundation and other contributors<br>
  12. Licensed under the MIT License.
  13. HTML
  14. end
  15. end