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

24 lines
592 B

module Docs
class Q < Github
self.name = 'Q'
self.release = '1.5.0'
10 years ago
self.base_url = 'https://github.com/kriskowal/q/wiki/'
self.root_path = 'API-Reference'
self.links = {
10 years ago
home: 'http://documentup.com/kriskowal/q/',
code: 'https://github.com/kriskowal/q'
}
html_filters.push 'q/entries', 'title'
10 years ago
options[:container] = '.markdown-body'
options[:title] = 'Q'
options[:skip_links] = true
options[:attribution] = <<-HTML
&copy; 2009&ndash;2017 Kristopher Michael Kowal<br>
10 years ago
Licensed under the MIT License.
HTML
end
end