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.
devdocs/lib/docs/scrapers/mocha.rb

23 lines
610 B

module Docs
class Mocha < UrlScraper
self.type = 'mocha'
self.release = '4.1.0'
self.base_url = 'https://mochajs.org/'
self.links = {
home: 'https://mochajs.org/',
code: 'https://github.com/mochajs/mocha'
}
html_filters.push 'mocha/clean_html', 'mocha/entries', 'title'
options[:container] = '#content'
options[:title] = 'mocha'
options[:skip_links] = true
options[:attribution] = <<-HTML
&copy; 2011&ndash;2017 JS Foundation and contributors<br>
Licensed under the Creative Commons Attribution 4.0 International License.
HTML
end
end