mirror of https://github.com/freeCodeCamp/devdocs
parent
acbf684186
commit
e8f04b90e6
@ -0,0 +1,7 @@
|
||||
._fluture {
|
||||
@extend %simple;
|
||||
|
||||
pre > code {
|
||||
font-size: inherit;
|
||||
}
|
||||
}
|
@ -0,0 +1,22 @@
|
||||
module Docs
|
||||
class Fluture
|
||||
class CleanHtmlFilter < Filter
|
||||
def call
|
||||
# Replace header image with text
|
||||
at_css('h1').content = 'Fluture'
|
||||
|
||||
# Remove the build line
|
||||
css('h1 ~ p:first-of-type').remove
|
||||
|
||||
# Remove the fantasy land image link
|
||||
css('p a').remove
|
||||
|
||||
# Make headers bigger by transforming them into a bigger variant
|
||||
css('h3').each { |node| node.name = 'h2' }
|
||||
css('h4').each { |node| node.name = 'h3' }
|
||||
|
||||
doc
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
@ -0,0 +1,24 @@
|
||||
module Docs
|
||||
class Fluture
|
||||
class EntriesFilter < Docs::EntriesFilter
|
||||
# The entire reference is one big page, so get_name and get_type are not necessary
|
||||
def additional_entries
|
||||
entries = []
|
||||
type = ""
|
||||
|
||||
css("h3, h4").each do |node|
|
||||
case node.name
|
||||
when "h3"
|
||||
type = node.text
|
||||
when "h4"
|
||||
name = node.text
|
||||
id = node.text.downcase
|
||||
entries << [name, id, type]
|
||||
end
|
||||
end
|
||||
|
||||
entries
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
@ -0,0 +1,29 @@
|
||||
module Docs
|
||||
|
||||
class Fluture < Github
|
||||
self.name = "Fluture"
|
||||
self.slug = "fluture"
|
||||
self.type = "fluture"
|
||||
self.release = "14.0.0"
|
||||
self.base_url = "https://github.com/fluture-js/Fluture/blob/#{self.release}/README.md"
|
||||
self.links = {
|
||||
home: "https://github.com/fluture-js/Fluture",
|
||||
code: "https://github.com/fluture-js/Fluture",
|
||||
}
|
||||
|
||||
html_filters.push "fluture/entries", "fluture/clean_html"
|
||||
|
||||
options[:skip] = %w[middleware.gif]
|
||||
options[:container] = '.markdown-body'
|
||||
options[:title] = "Fluture"
|
||||
options[:trailing_slash] = false
|
||||
options[:attribution] = <<-HTML
|
||||
© 2020 Aldwin Vlasblom<br>
|
||||
Licensed under the MIT License.
|
||||
HTML
|
||||
|
||||
def get_latest_version(opts)
|
||||
get_npm_version("fluture", opts)
|
||||
end
|
||||
end
|
||||
end
|
After Width: | Height: | Size: 3.7 KiB |
After Width: | Height: | Size: 4.2 KiB |
@ -0,0 +1 @@
|
||||
https://github.com/fluture-js/Fluture/
|
Loading…
Reference in new issue