| 1234567891011121314151617181920212223 |
- module Docs
- class Q < Github
- self.name = 'Q'
- self.release = '1.4.1'
- self.base_url = 'https://github.com/kriskowal/q/wiki/'
- self.root_path = 'API-Reference'
- self.links = {
- home: 'http://documentup.com/kriskowal/q/',
- code: 'https://github.com/kriskowal/q'
- }
- html_filters.push 'q/entries', 'title'
- options[:container] = '.markdown-body'
- options[:title] = 'Q'
- options[:skip_links] = true
- options[:attribution] = <<-HTML
- © 2009–2015 Kristopher Michael Kowal and contributors<br>
- Licensed under the MIT License.
- HTML
- end
- end
|