| 123456789101112131415161718 |
- module Docs
- class Less < UrlScraper
- self.type = 'less'
- self.version = '1.5.0'
- 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 }
- options[:attribution] = <<-HTML.strip_heredoc
- © 2009–2013 Alexis Sellier & The Core Less Team<br>
- Licensed under the Apache License v2.0.
- HTML
- end
- end
|