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.
24 lines
575 B
24 lines
575 B
module Docs
|
|
class Mocha < UrlScraper
|
|
self.name = 'mocha'
|
|
self.type = 'mocha'
|
|
self.release = '2.4.5'
|
|
self.base_url = 'https://mochajs.org/'
|
|
self.links = {
|
|
home: 'https://mochajs.org/',
|
|
code: 'https://github.com/mochajs/mocha'
|
|
}
|
|
|
|
html_filters.push 'mocha/entries', 'mocha/clean_html', 'title'
|
|
|
|
options[:container] = '#content'
|
|
options[:title] = 'mocha'
|
|
options[:skip_links] = true
|
|
|
|
options[:attribution] = <<-HTML
|
|
© 2011–2016 TJ Holowaychuk<br>
|
|
Licensed under the MIT License.
|
|
HTML
|
|
end
|
|
end
|