File tree 3 files changed +15
-23
lines changed
3 files changed +15
-23
lines changed Original file line number Diff line number Diff line change 1
1
[
2
+ [
3
+ " 2025-02-23" ,
4
+ " New documentation: <a href=\" /threejs/\" >Three.js</a>"
5
+ ],
2
6
[
3
7
" 2025-02-16" ,
4
8
" New documentation: <a href=\" /openlayers/\" >OpenLayers</a>"
Original file line number Diff line number Diff line change @@ -36,16 +36,17 @@ def remove_unnecessary_elements
36
36
def wrap_code_blocks
37
37
css ( 'code' ) . each do |node |
38
38
next if node . parent . name == 'pre'
39
- pre = node . wrap ( '<pre>' )
40
- pre [ 'data-language' ] = pre [ 'class' ] = 'language- javascript'
39
+ node . wrap ( '<pre>' )
40
+ node . parent [ 'data-language' ] = ' javascript'
41
41
end
42
42
end
43
43
44
44
def process_sections
45
45
# Handle source links
46
46
css ( 'h2' ) . each do |node |
47
47
next unless node . content . strip == 'Source'
48
- handle_source_link ( node )
48
+ node . next_element . remove
49
+ node . remove
49
50
end
50
51
51
52
# Handle method signatures and properties
@@ -65,17 +66,6 @@ def process_sections
65
66
end
66
67
end
67
68
68
- def handle_source_link ( node )
69
- content = node . next_element &.inner_html
70
- return unless content
71
- content = content . gsub ( /<[^>]+>/ , '' )
72
- if content =~ /src\/ (.*?)\. js/
73
- path = "/#{ $1} .js"
74
- formatted_link = %Q(<a class="reference external" href="https://github.com/mrdoob/three.js/blob/master/src#{ path } ">src#{ path } </a>)
75
- node . next_element . inner_html = formatted_link if node . next_element
76
- end
77
- end
78
-
79
69
def handle_method_signatures ( content )
80
70
content
81
71
. gsub ( PATTERNS [ :method_this ] ) { format_method_signature ( 'this' , $1, $2) }
Original file line number Diff line number Diff line change 1
1
module Docs
2
- class Threejs < FileScraper
2
+ class Threejs < UrlScraper
3
3
self . name = 'Three.js'
4
4
self . type = 'simple'
5
5
self . slug = 'threejs'
@@ -40,20 +40,18 @@ class Threejs < FileScraper
40
40
Licensed under the MIT License.
41
41
HTML
42
42
43
- version '171' do
44
- self . release = '171'
45
- self . base_url = "https://threejs.org/docs"
46
- end
43
+ self . release = '173'
44
+ self . base_url = "https://threejs.org/docs"
47
45
48
46
def get_latest_version ( opts )
49
- get_latest_github_release ( 'mrdoob' , 'three.js' , opts )
47
+ get_latest_github_release ( 'mrdoob' , 'three.js' , opts ) [ 1 .. ]
50
48
end
51
49
52
50
def initial_paths
53
51
paths = [ ]
54
- json_path = File . expand_path ( "/tmp /list.json" )
55
- json_content = File . read ( json_path )
56
- json_data = JSON . parse ( json_content )
52
+ url = 'https://threejs.org/docs /list.json'
53
+ response = Request . run ( url )
54
+ json_data = JSON . parse ( response . body )
57
55
58
56
# Process both API and manual sections
59
57
process_documentation ( json_data [ 'en' ] , paths )
You can’t perform that action at this time.
0 commit comments