devdocs/lib/docs/scrapers/underscore.rb
2014-08-30 12:23:17 -04:00

20 lines
599 B
Ruby

module Docs
class Underscore < UrlScraper
self.name = 'Underscore.js'
self.slug = 'underscore'
self.type = 'underscore'
self.version = '1.7.0'
self.base_url = 'http://underscorejs.org'
html_filters.push 'underscore/clean_html', 'underscore/entries', 'title'
options[:title] = 'Underscore.js'
options[:container] = '#documentation'
options[:skip_links] = true
options[:attribution] = <<-HTML
&copy; 2009&ndash;2014 Jeremy Ashkenas, DocumentCloud and Investigative Reporters &amp; Editors<br>
Licensed under the MIT License.
HTML
end
end