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.
17 lines
412 B
17 lines
412 B
6 months ago
|
module Docs
|
||
|
class Man < FileScraper
|
||
|
self.name = 'Linux man pages'
|
||
|
self.type = 'simple'
|
||
|
self.slug = 'man'
|
||
|
self.base_url = "https://man7.org/linux/man-pages/"
|
||
|
self.initial_paths = %w(dir_by_project.html)
|
||
|
self.links = {
|
||
|
home: 'https://man7.org/linux/man-pages/',
|
||
|
}
|
||
|
html_filters.push 'man/entries', 'man/clean_html'
|
||
|
options[:attribution] = <<-HTML
|
||
|
...
|
||
|
HTML
|
||
|
end
|
||
|
end
|