forked from freeCodeCamp/devdocs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jsdoc.rb
29 lines (26 loc) · 799 Bytes
/
jsdoc.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
module Docs
class Jsdoc < UrlScraper
self.name = 'JSDoc'
self.type = 'simple'
self.release = '3.6.7'
self.base_url = 'https://jsdoc.app/'
self.root_path = 'index.html'
self.links = {
home: 'https://jsdoc.app/',
code: 'https://github.com/jsdoc/jsdoc'
}
html_filters.push 'jsdoc/clean_html', 'jsdoc/entries'
options[:trailing_slash] = false
options[:container] = 'article'
options[:skip] = [
'about-license-jsdoc3.html'
]
options[:attribution] = <<-HTML
© 2011–2017 the contributors to the JSDoc 3 documentation project<br>
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
HTML
def get_latest_version(opts)
get_npm_version('jsdoc', opts)
end
end
end