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.
18 lines
412 B
18 lines
412 B
10 years ago
|
module Docs
|
||
|
class Webpack < UrlScraper
|
||
|
self.name = 'Webpack'
|
||
|
self.type = 'webpack'
|
||
|
self.version = '1.9'
|
||
|
self.base_url = 'https://webpack.github.io/docs/'
|
||
|
self.root_path = 'index.html'
|
||
|
|
||
|
html_filters.push 'webpack/entries', 'webpack/clean_html'
|
||
|
|
||
|
|
||
|
options[:attribution] = <<-HTML
|
||
|
© 2012–2015 Tobias Koppers<br>
|
||
|
Licensed under the MIT License.
|
||
|
HTML
|
||
|
end
|
||
|
end
|