mirror of https://github.com/freeCodeCamp/devdocs
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.
22 lines
546 B
22 lines
546 B
module Docs
|
|
class Flow < React
|
|
self.type = 'react'
|
|
self.release = '0.34'
|
|
self.base_url = 'https://flowtype.org/docs/'
|
|
self.root_path = 'getting-started.html'
|
|
self.links = {
|
|
home: 'https://flowtype.org/',
|
|
code: 'https://github.com/facebook/flow'
|
|
}
|
|
|
|
options[:container] = '.content'
|
|
options[:root_title] = 'Flow Documentation'
|
|
options[:only_patterns] = nil
|
|
|
|
options[:attribution] = <<-HTML
|
|
© 2013–2016 Facebook Inc.<br>
|
|
Licensed under the BSD License.
|
|
HTML
|
|
end
|
|
end
|