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.
33 lines
785 B
33 lines
785 B
module Docs
|
|
class Jekyll < UrlScraper
|
|
self.type = 'jekyll'
|
|
self.release = '3.7.2'
|
|
self.base_url = 'https://jekyllrb.com/docs/'
|
|
self.root_path = 'home/'
|
|
self.links = {
|
|
home: 'https://jekyllrb.com/',
|
|
code: 'https://github.com/jekyll/jekyll'
|
|
}
|
|
|
|
html_filters.push 'jekyll/clean_html', 'jekyll/entries'
|
|
|
|
options[:trailing_slash] = true
|
|
options[:skip] = %w(sites/ upgrading/)
|
|
options[:skip_patterns] = [
|
|
/conduct/,
|
|
/history/,
|
|
/maintaining/,
|
|
/contributing/,
|
|
]
|
|
options[:replace_paths] = {
|
|
'' => 'home/',
|
|
'/' => 'home/'
|
|
}
|
|
|
|
options[:attribution] = <<-HTML
|
|
© 2008–2018 Tom Preston-Werner and Jekyll contributors<br>
|
|
Licensed under the MIT license.
|
|
HTML
|
|
end
|
|
end
|