mirror of https://github.com/freeCodeCamp/devdocs
parent
38e07247a9
commit
6f1a9aab21
@ -0,0 +1,17 @@
|
||||
module Docs
|
||||
class ReactBootstrap
|
||||
class CleanHtmlFilter < Filter
|
||||
def call
|
||||
css('.flex-column.d-flex').remove
|
||||
css('header').remove
|
||||
css('.bs-example').remove
|
||||
css('.position-relative').each do |node|
|
||||
code = node.at_css('textarea')
|
||||
code.name = 'pre'
|
||||
code['style'] = code['style'] + '; border: solid 1px;'
|
||||
end
|
||||
doc
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
@ -0,0 +1,23 @@
|
||||
module Docs
|
||||
class ReactBootstrap
|
||||
class EntriesFilter < Docs::EntriesFilter
|
||||
def get_name
|
||||
name = at_css('#rb-docs-content h1, #rb-docs-content h2').content
|
||||
if name.end_with? '#'
|
||||
name = name[0..-2]
|
||||
end
|
||||
name
|
||||
end
|
||||
|
||||
def get_type
|
||||
type = slug.split('/')[0..-2].join(': ')
|
||||
if type == ''
|
||||
type = slug.split('/').join('')
|
||||
end
|
||||
type.gsub!('-', ' ')
|
||||
type.split.map(&:capitalize).join(' ')
|
||||
type
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
@ -0,0 +1,34 @@
|
||||
module Docs
|
||||
class ReactBootstrap < UrlScraper
|
||||
self.slug = 'react_bootstrap'
|
||||
self.type = 'simple'
|
||||
self.release = '1.5.0'
|
||||
self.base_url = 'https://react-bootstrap.github.io/'
|
||||
|
||||
self.links = {
|
||||
home: 'https://react-bootstrap.github.io',
|
||||
code: 'https://github.com/react-bootstrap/react-bootstrap'
|
||||
}
|
||||
|
||||
html_filters.push 'react_bootstrap/entries', 'react_bootstrap/clean_html'
|
||||
|
||||
options[:skip] = %w(
|
||||
react-overlays/
|
||||
)
|
||||
|
||||
options[:replace_paths] = {
|
||||
}
|
||||
|
||||
options[:trailing_slash] = true
|
||||
|
||||
options[:attribution] = <<-HTML
|
||||
© 2014–present Stephen J. Collings, Matthew Honnibal, Pieter Vanderwerff<br>
|
||||
Licensed under the MIT License (MIT).
|
||||
HTML
|
||||
|
||||
def get_latest_version(opts)
|
||||
doc = fetch_doc('https://react-bootstrap.github.io/', opts)
|
||||
doc.at_css('#t-version>a').content.split()[0].strip[1..-1]
|
||||
end
|
||||
end
|
||||
end
|
After Width: | Height: | Size: 642 B |
After Width: | Height: | Size: 1.4 KiB |
@ -0,0 +1 @@
|
||||
https://github.com/react-bootstrap/react-bootstrap/blob/master/www/static/logo.svg
|
Loading…
Reference in new issue