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/cordova.rb

22 lines
668 B

module Docs
class Cordova < UrlScraper
self.name = 'Cordova'
self.type = 'cordova'
self.version = '4.0.0'
self.base_url = 'http://cordova.apache.org/docs/en/4.0.0/'
self.root_path = 'index.html'
html_filters.push 'cordova/clean_html', 'cordova/entries', 'title'
options[:container] = ->(filter) { filter.root_page? ? '#home' : '#content' }
options[:title] = false
options[:root_title] = 'Apache Cordova'
options[:skip] = %w(_index.html guide_support_index.md.html)
options[:attribution] = <<-HTML
&copy; 2012-2014 The Apache Software Foundation<br>
Licensed under the Apache License 2.0.
HTML
end
end