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.
devdocs/lib/docs/scrapers/jekyll.rb

44 lines
990 B

module Docs
class Jekyll < UrlScraper
self.type = 'jekyll'
self.base_url = 'https://jekyllrb.com/docs/'
self.root_path = 'index.html'
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] = {
'templates/' => 'liquid/'
}
options[:attribution] = <<-HTML
&copy; 2020 Jekyll Core Team and contributors<br>
Licensed under the MIT license.
HTML
version '4' do
self.release = '4.2.0'
end
version '3' do
self.release = '3.7.2'
end
def get_latest_version(opts)
doc = fetch_doc('https://jekyllrb.com/docs/', opts)
doc.at_css('.meta a').content[1..-1]
end
end
end