mirror of https://github.com/freeCodeCamp/devdocs
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
468 B
20 lines
468 B
module Docs
|
|
class Jquery < UrlScraper
|
|
self.abstract = true
|
|
self.type = 'jquery'
|
|
|
|
html_filters.push 'jquery/clean_html', 'title'
|
|
text_filters.push 'jquery/clean_urls'
|
|
|
|
options[:title] = false
|
|
options[:container] = '#content'
|
|
options[:trailing_slash] = false
|
|
options[:skip_patterns] = [/category/]
|
|
|
|
options[:attribution] = <<-HTML
|
|
© 2014 The jQuery Foundation<br>
|
|
Licensed under the MIT License.
|
|
HTML
|
|
end
|
|
end
|