| 12345678910111213141516171819 |
- module Docs
- class Express < UrlScraper
- self.name = 'Express'
- self.type = 'express'
- self.version = '4.3.1'
- self.base_url = 'http://expressjs.com/4x/api.html'
- html_filters.push 'express/clean_html', 'express/entries', 'title'
- options[:title] = 'Express'
- options[:container] = '#right'
- options[:skip_links] = true
- options[:attribution] = <<-HTML
- © 2009–2014 TJ Holowaychuk<br>
- Licensed under the MIT License.
- HTML
- end
- end
|