| 1234567891011121314151617181920212223 |
- module Docs
- class Coffeescript < UrlScraper
- self.name = 'CoffeeScript'
- self.type = 'coffeescript'
- self.version = '1.10.0'
- self.base_url = 'http://coffeescript.org'
- self.links = {
- home: 'http://coffeescript.org',
- code: 'https://github.com/jashkenas/coffeescript'
- }
- html_filters.push 'coffeescript/clean_html', 'coffeescript/entries', 'title'
- options[:title] = 'CoffeeScript'
- options[:container] = '.container'
- options[:skip_links] = true
- options[:attribution] = <<-HTML
- © 2009–2015 Jeremy Ashkenas<br>
- Licensed under the MIT License.
- HTML
- end
- end
|