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/wordpress.rb

45 lines
1.0 KiB

module Docs
class Wordpress < UrlScraper
self.name = 'WordPress'
self.type = 'wordpress'
self.release = '6.7'
self.base_url = 'https://developer.wordpress.org/reference/'
self.initial_paths = %w(
functions/
hooks/
classes/
)
self.links = {
home: 'https://wordpress.org/',
code: 'https://github.com/WordPress/WordPress'
}
html_filters.push 'wordpress/entries', 'wordpress/clean_html'
options[:container] = 'main'
options[:trailing_slash] = false
options[:only_patterns] = [
/\Afunctions\//,
/\Ahooks\//,
/\Aclasses\//
]
options[:skip_patterns] = [
/\Afunctions\/page\/\d+/,
/\Ahooks\/page\/\d+/,
/\Aclasses\/page\/\d+/
]
options[:attribution] = <<-HTML
&copy; 2003&ndash;2024 WordPress Foundation<br>
Licensed under the GNU GPLv2+ License.
HTML
def get_latest_version(opts)
tags = get_github_tags('WordPress', 'wordpress-develop', opts)
tags[0]['name']
end
end
end