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

19 lines
476 B

module Docs
class Clojure < UrlScraper
self.type = 'clojure'
self.version = '1.6'
self.base_url = 'http://clojure.github.io/clojure/'
self.root_path = 'api-index.html'
html_filters.push 'clojure/entries', 'clojure/clean_html'
options[:container] = '#content_view'
options[:only_patterns] = [/\Aclojure\./]
options[:attribution] = <<-HTML
&copy; Rich Hickey<br>
Licensed under the Eclipse Public License 1.0.
HTML
end
end