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

19 lines
468 B

11 years ago
module Docs
class Less < UrlScraper
self.type = 'less'
self.version = '1.6.0'
11 years ago
self.base_url = 'http://lesscss.org'
html_filters.push 'less/clean_html', 'less/entries', 'title'
options[:title] = 'LESS'
options[:container] = 'section'
options[:skip_links] = true
11 years ago
options[:attribution] = <<-HTML
&copy; 2009&ndash;2014 Alexis Sellier &amp; The Core Less Team<br>
11 years ago
Licensed under the Apache License v2.0.
HTML
end
end