mirror of https://github.com/freeCodeCamp/devdocs
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
629 B
24 lines
629 B
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
|
|
end
|
|
end
|