mirror of
https://github.com/freeCodeCamp/devdocs
synced 2024-11-16 19:48:10 +01:00
ad5b6dbc09
Closes #548.
18 lines
467 B
Ruby
18 lines
467 B
Ruby
module Docs
|
|
class Jquery < UrlScraper
|
|
self.abstract = true
|
|
self.type = 'jquery'
|
|
|
|
html_filters.push 'jquery/clean_html', 'title'
|
|
|
|
options[:title] = false
|
|
options[:container] = '#content'
|
|
options[:trailing_slash] = false
|
|
options[:skip_patterns] = [/deprecated/, /category\/version/]
|
|
|
|
options[:attribution] = <<-HTML
|
|
© The jQuery Foundation and other contributors<br>
|
|
Licensed under the MIT License.
|
|
HTML
|
|
end
|
|
end
|