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.
31 lines
592 B
31 lines
592 B
9 years ago
|
module Docs
|
||
|
class Gnu < FileScraper
|
||
|
self.type = 'gnu'
|
||
|
self.root_path = 'index.html'
|
||
|
self.abstract = 'true'
|
||
|
|
||
|
html_filters.push 'gnu/clean_html', 'gnu/entries'
|
||
|
|
||
|
options[:skip] = %w(
|
||
|
GNU-Project.html
|
||
|
Service.html
|
||
|
)
|
||
|
|
||
|
options[:skip_patterns] = [
|
||
|
/Funding/,
|
||
|
/Projects/,
|
||
|
/Copying/,
|
||
|
/License/,
|
||
|
/Proposed/,
|
||
|
/Contribut/,
|
||
|
/Index/,
|
||
|
/\ABug/
|
||
|
]
|
||
|
|
||
|
options[:attribution] = <<-HTML
|
||
|
© Free Software Foundation<br>
|
||
|
Licensed under the GNU Free Documentation License, Version 1.3.
|
||
|
HTML
|
||
|
end
|
||
|
end
|