Fix 'notable traits' sections

pull/1389/head
MasterEnoc 4 years ago
parent c5f7de620b
commit 0a2493eca7

@ -27,6 +27,18 @@ module Docs
end end
end end
# Fix notable trait sections
css('.method, .rust.trait').each do |node|
traitSection = node.at_css('.notable-traits')
if traitSection
traitSectionContent = traitSection.css('.notable-traits-tooltiptext')
traitSection.css('.notable-traits-tooltip').remove
traitSection.add_child(traitSectionContent)
node.after(traitSection)
end
end
css('.rusttest', '.test-arrow', 'hr').remove css('.rusttest', '.test-arrow', 'hr').remove
css('.docblock.attributes').each do |node| css('.docblock.attributes').each do |node|
@ -88,20 +100,6 @@ module Docs
css('.collapse-toggle').remove css('.collapse-toggle').remove
# Fix how notable-traits sections are shown
css('.method').each do |node|
traitSection = node.at_css('.notable-traits')
if traitSection
traitSectionContent = traitSection.css('.notable-traits-tooltiptext')
traitSection.css('.notable-traits-tooltip').remove
traitSection.add_child(traitSectionContent)
node.after(traitSection)
end
end
doc doc
end end
end end

Loading…
Cancel
Save