| 123456789101112131415161718192021222324252627 |
- module Docs
- class Handlebars < UrlScraper
- self.name = 'Handlebars.js'
- self.slug = 'handlebars'
- self.type = 'simple'
- self.release = '4.0.12'
- self.base_url = 'https://handlebarsjs.com/'
- self.links = {
- home: 'https://handlebarsjs.com/',
- code: 'https://github.com/wycats/handlebars.js/'
- }
- html_filters.push 'handlebars/entries', 'handlebars/clean_html', 'title'
- options[:container] = '#contents'
- options[:root_title] = 'Handlebars.js'
- options[:attribution] = <<-HTML
- © 2011–2017 by Yehuda Katz<br>
- Licensed under the MIT License.
- HTML
- def get_latest_version(opts)
- get_npm_version('handlebars', opts)
- end
- end
- end
|