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.
10 lines
311 B
10 lines
311 B
1 year ago
|
module Docs
|
||
|
class Nextjs < UrlScraper
|
||
|
self.name = 'nextjs`'
|
||
|
self.type = 'simple'
|
||
|
self.release = 'v14.1.0'
|
||
|
self.base_url = 'https://nextjs.org/docs'
|
||
|
self.initial_paths = %w(reference/)
|
||
|
html_filters.push 'nextjs/entries', 'nextjs/clean_html'
|
||
|
end
|
||
|
end
|