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.
20 lines
454 B
20 lines
454 B
10 years ago
|
module Docs
|
||
|
class Vue < UrlScraper
|
||
|
self.name = 'Vue.js'
|
||
|
self.slug = 'vue'
|
||
|
self.type = 'vue'
|
||
|
self.version = '0.12.5'
|
||
|
self.base_url = 'http://vuejs.org/api/'
|
||
|
|
||
|
|
||
|
html_filters.push 'vue/clean_html', 'vue/entries'
|
||
|
options[:follow_links] = ->(filter) { filter.root_page? }
|
||
|
|
||
|
|
||
|
options[:attribution] = <<-HTML
|
||
|
© 2014–2015 Evan You, Vue.js contributors<br>
|
||
|
Licensed under the MIT License.
|
||
|
HTML
|
||
|
end
|
||
|
end
|