mirror of
https://github.com/freeCodeCamp/devdocs
synced 2024-11-16 19:48:10 +01:00
29 lines
799 B
Ruby
29 lines
799 B
Ruby
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
|