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.
devdocs/lib/docs/scrapers/webpack.rb

18 lines
412 B

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
&copy; 2012&ndash;2015 Tobias Koppers<br>
Licensed under the MIT License.
HTML
end
end