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.
16 lines
395 B
16 lines
395 B
module Docs
|
|
class Influxdb < UrlScraper
|
|
self.name = 'InfluxDB'
|
|
self.type = 'influxdb'
|
|
self.release = '0.10'
|
|
self.base_url = 'https://docs.influxdata.com/influxdb/v0.10/'
|
|
|
|
html_filters.push 'influxdb/entries', 'influxdb/clean_html'
|
|
|
|
options[:attribution] = <<-HTML
|
|
© 2010–2015 InfluxData<br>
|
|
Licensed under the MIT license.
|
|
HTML
|
|
end
|
|
end
|