| 123456789101112131415161718192021222324 |
- module Docs
- class Cordova < UrlScraper
- self.name = 'Cordova'
- self.type = 'cordova'
- self.version = '5.4.0'
- self.base_url = "http://cordova.apache.org/docs/en/#{version}/"
- self.root_path = 'index.html'
- self.links = {
- home: 'http://cordova.apache.org/'
- }
- html_filters.push 'cordova/clean_html', 'cordova/entries', 'title'
- options[:container] = ->(filter) { filter.root_page? ? '#home' : '#page-toc-source' }
- options[:title] = false
- options[:root_title] = 'Apache Cordova'
- options[:skip] = %w(page_index.html)
- options[:attribution] = <<-HTML
- © 2012-2015 The Apache Software Foundation<br>
- Licensed under the Apache License 2.0.
- HTML
- end
- end
|