-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Expand file tree
/
Copy pathreact_bootstrap.rb
More file actions
30 lines (24 loc) · 713 Bytes
/
react_bootstrap.rb
File metadata and controls
30 lines (24 loc) · 713 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
module Docs
class ReactBootstrap < UrlScraper
self.name = 'React Bootstrap'
self.slug = 'react_bootstrap'
self.type = 'simple'
self.release = '2.8.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
© 2023 React Bootstrap.<br>
Licensed under the MIT License (MIT).
HTML
end
end