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

18 lines
394 B

module Docs
class Maxcdn < UrlScraper
self.name = 'MaxCDN'
self.type = 'maxcdn'
self.base_url = 'http://docs.maxcdn.com/'
html_filters.push 'maxcdn/clean_html', 'maxcdn/entries'
options[:container] = '#readme-docs'
options[:skip_links] = true
options[:attribution] = <<-HTML
&copy; 2014 MaxCDN<br>
Licensed under the MIT License.
HTML
end
end