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
469 B
20 lines
469 B
module Docs
|
|
class Lodash < UrlScraper
|
|
self.name = 'lodash'
|
|
self.slug = 'lodash'
|
|
self.type = 'lodash'
|
|
self.version = '3.3.0'
|
|
self.base_url = 'https://lodash.com/docs'
|
|
|
|
html_filters.push 'lodash/entries', 'lodash/clean_html', 'title'
|
|
|
|
options[:title] = 'lodash'
|
|
options[:skip_links] = true
|
|
|
|
options[:attribution] = <<-HTML
|
|
© 2012–2015 The Dojo Foundation<br>
|
|
Licensed under the MIT License.
|
|
HTML
|
|
end
|
|
end
|