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.
15 lines
370 B
15 lines
370 B
6 years ago
|
module Docs
|
||
|
class SaltStack < UrlScraper
|
||
|
self.release = '2018.3.2'
|
||
|
self.base_url = 'https://docs.saltstack.com/en/latest/ref/'
|
||
|
|
||
|
html_filters.push 'salt_stack/entries', 'salt_stack/clean_html'
|
||
|
|
||
|
options[:container] = '.body-content'
|
||
|
|
||
|
options[:attribution] = <<-HTML
|
||
|
© 2018 SaltStack. All Rights Reserved, SaltStack Inc.
|
||
|
HTML
|
||
|
end
|
||
|
end
|