We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2346b1a commit e07e03aCopy full SHA for e07e03a
lib/docs/filters/express/clean_html.rb
@@ -15,7 +15,10 @@ def call
15
16
@doc = at_css('#page-doc') unless root_page?
17
18
- at_css('h1').remove if root_page?
+ if root_page?
19
+ at_css('h1').remove
20
+ css('> header', '#menu').remove
21
+ end
22
23
# Put id attributes on headings
24
css('h2 + a[name]').each do |node|
lib/docs/scrapers/express.rb
@@ -2,7 +2,7 @@ module Docs
2
class Express < UrlScraper
3
self.name = 'Express'
4
self.type = 'express'
5
- self.release = '4.15.4'
+ self.release = '4.16.1'
6
self.base_url = 'http://expressjs.com/en/'
7
self.root_path = '4x/api.html'
8
self.initial_paths = %w(
0 commit comments