module Docs class Less < UrlScraper self.type = 'less' self.version = '1.4.1' 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
Licensed under the Apache License v2.0. HTML end end