mirror of https://github.com/freeCodeCamp/devdocs
parent
6ad0784fbe
commit
d49eea4640
@ -0,0 +1,27 @@
|
|||||||
|
module Docs
|
||||||
|
class Prettier
|
||||||
|
class EntriesFilter < Docs::EntriesFilter
|
||||||
|
def get_name
|
||||||
|
at_css('h1').children.select(&:text?).map(&:content).join.strip
|
||||||
|
end
|
||||||
|
|
||||||
|
def type
|
||||||
|
link = at_css('.navListItemActive')
|
||||||
|
section = link.ancestors('.navGroup').first
|
||||||
|
type = section.at_css('h3').content.strip
|
||||||
|
return name if type == 'Configuring Prettier'
|
||||||
|
return name if type == 'Usage'
|
||||||
|
type
|
||||||
|
end
|
||||||
|
|
||||||
|
def additional_entries
|
||||||
|
entries = []
|
||||||
|
css('.mainContainer h2').each do |node|
|
||||||
|
id = node.at_css('.anchor')['id']
|
||||||
|
entries << [node.text, id]
|
||||||
|
end
|
||||||
|
entries
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
@ -0,0 +1,25 @@
|
|||||||
|
module Docs
|
||||||
|
class Prettier < UrlScraper
|
||||||
|
self.name = 'Prettier'
|
||||||
|
self.type = 'simple'
|
||||||
|
self.release = '2.5.1'
|
||||||
|
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', 'react_native/clean_html'
|
||||||
|
|
||||||
|
options[:container] = '.docMainWrapper'
|
||||||
|
|
||||||
|
options[:attribution] = <<-HTML
|
||||||
|
© James Long and contributors
|
||||||
|
HTML
|
||||||
|
|
||||||
|
def get_latest_version(opts)
|
||||||
|
get_npm_version('prettier', opts)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
After Width: | Height: | Size: 941 B |
After Width: | Height: | Size: 1.5 KiB |
@ -0,0 +1 @@
|
|||||||
|
https://prettier.io/icon.png
|
Loading…
Reference in new issue