mirror of https://github.com/freeCodeCamp/devdocs
Since v2 is included as one of the versions, I separated it into new files.pull/1853/head
parent
3b2daf1e6d
commit
05244efb73
@ -0,0 +1,27 @@
|
|||||||
|
module Docs
|
||||||
|
class Godot
|
||||||
|
class CleanHtmlV2Filter < Filter
|
||||||
|
def call
|
||||||
|
if root_page?
|
||||||
|
at_css('h1').content = 'Godot Engine'
|
||||||
|
at_css('.admonition.tip').remove
|
||||||
|
end
|
||||||
|
|
||||||
|
css('ul[id].simple li:first-child:last-child').each do |node|
|
||||||
|
heading = Nokogiri::XML::Node.new 'h3', doc.document
|
||||||
|
heading['id'] = node.parent['id']
|
||||||
|
heading.children = node.children
|
||||||
|
node.parent.before(heading).remove
|
||||||
|
end
|
||||||
|
|
||||||
|
css('h3 strong').each do |node|
|
||||||
|
node.before(node.children).remove
|
||||||
|
end
|
||||||
|
|
||||||
|
css('a.reference').remove_attr('class')
|
||||||
|
|
||||||
|
doc
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
@ -0,0 +1,45 @@
|
|||||||
|
module Docs
|
||||||
|
class Godot
|
||||||
|
class EntriesV2Filter < Docs::EntriesFilter
|
||||||
|
def get_name
|
||||||
|
name = at_css('h1').content
|
||||||
|
name.remove! "\u{00B6}" # Remove the pilcrow
|
||||||
|
name
|
||||||
|
end
|
||||||
|
|
||||||
|
TYPE_BY_LEARNING_PATH = {
|
||||||
|
'step_by_step' => 'Guides: Step by step',
|
||||||
|
'editor' => 'Guides: Editor',
|
||||||
|
'features' => 'Guides: Engine features',
|
||||||
|
'scripting' => 'Guides: Scripting',
|
||||||
|
'workflow' => 'Guides: Project workflow'
|
||||||
|
}
|
||||||
|
|
||||||
|
def get_type
|
||||||
|
if slug.start_with?('learning')
|
||||||
|
TYPE_BY_LEARNING_PATH[slug.split('/')[1]]
|
||||||
|
else
|
||||||
|
name
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def additional_entries
|
||||||
|
return [] unless slug.start_with?('classes')
|
||||||
|
|
||||||
|
css('.simple[id]').each_with_object [] do |node, entries|
|
||||||
|
name = node.at_css('strong').content
|
||||||
|
next if name == self.name
|
||||||
|
name.prepend "#{self.name}."
|
||||||
|
name << '()'
|
||||||
|
entries << [name, node['id']] unless entries.any? { |entry| entry[0] == name }
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def include_default_entry?
|
||||||
|
return false if subpath.start_with?('learning') && subpath.end_with?('index.html')
|
||||||
|
return false if subpath == 'classes/index.html'
|
||||||
|
true
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
Loading…
Reference in new issue