mirror of
https://github.com/freeCodeCamp/devdocs
synced 2024-11-16 19:48:10 +01:00
enzyme: process review comments
This commit is contained in:
parent
abe3d4b370
commit
af412d641e
2 changed files with 10 additions and 3 deletions
|
@ -4,14 +4,21 @@ module Docs
|
|||
def call
|
||||
@doc = at_css('.page-inner > section')
|
||||
|
||||
# Remove badges
|
||||
if root_page?
|
||||
css('a > img').each do |node|
|
||||
node.parent.remove
|
||||
end
|
||||
end
|
||||
|
||||
# Clean headers
|
||||
css('h1').each do |node|
|
||||
node.content = node.content
|
||||
end
|
||||
|
||||
# Make headers on reference pages bigger
|
||||
if subpath.include?('ReactWrapper') || subpath.include?('ShallowWrapper')
|
||||
css('h4').each do |node|
|
||||
if subpath.include?('api/')
|
||||
css('h3, h4').each do |node|
|
||||
node.name = 'h2'
|
||||
end
|
||||
end
|
||||
|
|
|
@ -10,7 +10,7 @@ module Docs
|
|||
|
||||
html_filters.push 'enzyme/entries', 'enzyme/clean_html'
|
||||
|
||||
options[:skip] = %w(CHANGELOG.html docs/future.html CONTRIBUTING.html)
|
||||
options[:skip] = %w(CHANGELOG.html docs/future.html docs/guides.html docs/api/ CONTRIBUTING.html)
|
||||
|
||||
options[:attribution] = <<-HTML
|
||||
© 2015 Airbnb, Inc.<br>
|
||||
|
|
Loading…
Reference in a new issue