File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -298,7 +298,9 @@ Make sure to set the version per the release tag (e.g. r160). Note that the r pr
298298curl https://codeload.github.com/mrdoob/three.js/tar.gz/refs/tags/r${VERSION} > threejs.tar.gz
299299tar -xzf threejs.tar.gz
300300mkdir -p docs/threejs~${VERSION}
301+ mv three.js-r${VERSION} /list.json /tmp/list.json
301302mv three.js-r${VERSION} /docs/* docs/threejs~${VERSION} /
303+
302304rm -rf three.js-r${VERSION} /
303305rm threejs.tar.gz
304306```
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ class CleanHtmlFilter < Filter
44 def call
55 # Remove unnecessary elements
66 css ( 'head, script, style' ) . remove
7+
78 # Wrap code blocks with pre tags and add syntax highlighting
89 css ( 'code' ) . each do |node |
910 unless node . parent . name == 'pre'
Original file line number Diff line number Diff line change @@ -40,8 +40,6 @@ class Threejs < FileScraper
4040 Licensed under the MIT License.
4141 HTML
4242
43- self . class_attribute :release
44-
4543 version '171' do
4644 self . release = '171'
4745 self . base_url = "https://threejs.org/docs"
@@ -53,7 +51,7 @@ def get_latest_version(opts)
5351
5452 def initial_paths
5553 paths = [ ]
56- json_path = File . expand_path ( "docs/threejs~ #{ self . release } /list.json" )
54+ json_path = File . expand_path ( "/tmp /list.json" )
5755 json_content = File . read ( json_path )
5856 json_data = JSON . parse ( json_content )
5957
You can’t perform that action at this time.
0 commit comments