module Docs class Jsdoc < UrlScraper self.name = 'JSDoc' self.type = 'jsdoc' self.release = '3.5.5' self.base_url = 'http://usejsdoc.org/' self.links = { home: 'http://usejsdoc.org/', code: 'https://github.com/jsdoc3/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 JSDoc 3 contributors
Licensed under CC BY-SA 3.0 HTML end end