devdocs/lib/docs/scrapers/prettier.rb
2024-08-18 12:28:24 +02:00

25 lines
610 B
Ruby

module Docs
class Prettier < UrlScraper
self.name = 'Prettier'
self.type = 'simple'
self.release = '3.3.3'
self.base_url = 'https://prettier.io/docs/en/'
self.links = {
home: 'https://prettier.io/',
code: 'https://github.com/prettier/prettier'
}
# Docusaurus like react_native
html_filters.push 'prettier/entries', 'prettier/clean_html'
options[:container] = '.docMainWrapper'
options[:attribution] = <<-HTML
&copy; James Long and contributors
HTML
def get_latest_version(opts)
get_npm_version('prettier', opts)
end
end
end