Skip to content

Commit cb3bb1d

Browse files
committed
Update JavaScript documentation
1 parent 3f269ce commit cb3bb1d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/docs/filters/core/normalize_urls.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def to_absolute_url(str)
4242
def fix_url(url)
4343
if context[:redirections]
4444
url = URL.parse(url)
45-
path = url.path.downcase
45+
path = url.path ? url.path.downcase : nil
4646

4747
if context[:redirections].key?(path)
4848
url.path = context[:redirections][path]

lib/docs/scrapers/mdn/javascript.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ class Javascript < Mdn
33
prepend FixInternalUrlsBehavior
44
prepend FixRedirectionsBehavior
55

6-
# release = '2024-11-18'
6+
# release = '2025-01-30'
77
self.name = 'JavaScript'
88
self.base_url = 'https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference'
99
self.links = {

0 commit comments

Comments
 (0)