mirror of
https://github.com/freeCodeCamp/devdocs
synced 2024-11-18 10:07:11 +01:00
0699fee649
Fixes #68.
20 lines
510 B
Ruby
20 lines
510 B
Ruby
module Docs
|
|
class Lodash < UrlScraper
|
|
self.name = 'Lo-Dash'
|
|
self.slug = 'lodash'
|
|
self.type = 'lodash'
|
|
self.version = '2.4.1'
|
|
self.base_url = 'https://lodash.com/docs'
|
|
|
|
html_filters.push 'lodash/clean_html', 'lodash/entries', 'title'
|
|
|
|
options[:title] = 'Lo-Dash'
|
|
options[:container] = 'h1+div+div'
|
|
options[:skip_links] = true
|
|
|
|
options[:attribution] = <<-HTML
|
|
© 2012–2014 The Dojo Foundation<br>
|
|
Licensed under the MIT License.
|
|
HTML
|
|
end
|
|
end
|