mirror of
https://github.com/freeCodeCamp/devdocs
synced 2024-11-18 10:07:11 +01:00
20 lines
548 B
Ruby
20 lines
548 B
Ruby
module Docs
|
|
class Moment < UrlScraper
|
|
self.name = 'Moment.js'
|
|
self.slug = 'moment'
|
|
self.type = 'moment'
|
|
self.version = '2.9.0'
|
|
self.base_url = 'http://momentjs.com/docs/'
|
|
|
|
html_filters.push 'moment/clean_html', 'moment/entries', 'title'
|
|
|
|
options[:title] = 'Moment.js'
|
|
options[:container] = '.docs-content'
|
|
options[:skip_links] = true
|
|
|
|
options[:attribution] = <<-HTML
|
|
© 2011–2015 Tim Wood, Iskren Chernev, Moment.js contributors<br>
|
|
Licensed under the MIT License.
|
|
HTML
|
|
end
|
|
end
|