We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f269ce commit cb3bb1dCopy full SHA for cb3bb1d
lib/docs/filters/core/normalize_urls.rb
@@ -42,7 +42,7 @@ def to_absolute_url(str)
42
def fix_url(url)
43
if context[:redirections]
44
url = URL.parse(url)
45
- path = url.path.downcase
+ path = url.path ? url.path.downcase : nil
46
47
if context[:redirections].key?(path)
48
url.path = context[:redirections][path]
lib/docs/scrapers/mdn/javascript.rb
@@ -3,7 +3,7 @@ class Javascript < Mdn
3
prepend FixInternalUrlsBehavior
4
prepend FixRedirectionsBehavior
5
6
- # release = '2024-11-18'
+ # release = '2025-01-30'
7
self.name = 'JavaScript'
8
self.base_url = 'https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference'
9
self.links = {
0 commit comments