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.
devdocs/lib/docs/scrapers/express.rb

27 lines
659 B

module Docs
class Express < UrlScraper
self.name = 'Express'
self.type = 'express'
self.version = '4.12.0'
self.base_url = 'http://expressjs.com/'
self.root_path = '4x/api.html'
html_filters.push 'express/clean_html', 'express/entries', 'title'
options[:title] = false
options[:root_title] = 'Express'
options[:container] = ->(filter) { filter.root_page? ? '#api-doc' : '.content' }
options[:only_patterns] = [
/\Astarter/,
/\Aguide/,
/\Aadvanced/
]
options[:attribution] = <<-HTML
&copy; 2009&ndash;2015 TJ Holowaychuk<br>
Licensed under the MIT License.
HTML
end
end