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
573 B
24 lines
573 B
10 years ago
|
module Docs
|
||
|
class Mocha < UrlScraper
|
||
|
self.name = 'mocha'
|
||
|
self.type = 'mocha'
|
||
|
self.version = '2.2.1'
|
||
|
self.base_url = 'http://mochajs.org/'
|
||
|
self.links = {
|
||
|
home: 'http://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–2015 TJ Holowaychuk<br>
|
||
|
Licensed under the MIT License.
|
||
|
HTML
|
||
|
end
|
||
|
end
|