Skip to content

Commit e3ac739

Browse files
committed
Update D3.js documentation (7.1.1)
1 parent a984326 commit e3ac739

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

assets/javascripts/templates/pages/about_tmpl.coffee

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ credits = [
228228
'https://raw.githubusercontent.com/dlang/phobos/master/LICENSE_1_0.txt'
229229
], [
230230
'D3.js',
231-
'2010-2020 Michael Bostock',
231+
'2010-2021 Michael Bostock',
232232
'BSD',
233233
'https://raw.githubusercontent.com/d3/d3/master/LICENSE'
234234
], [

lib/docs/scrapers/d3.rb

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,26 @@ class D3 < UrlScraper
1212
options[:container] = '.markdown-body'
1313

1414
options[:attribution] = <<-HTML
15-
&copy; 2010&ndash;2020 Michael Bostock<br>
15+
&copy; 2010&ndash;2021 Michael Bostock<br>
1616
Licensed under the BSD License.
1717
HTML
1818

19+
version '7' do
20+
self.release = '7.1.1'
21+
self.base_url = 'https://github.com/d3/'
22+
self.root_path = 'd3/blob/master/API.md'
23+
24+
html_filters.push 'd3/clean_html', 'd3/entries_v4'
25+
26+
options[:only_patterns] = [/\Ad3[\-\w]+\z/, /\Ad3\/blob\/master\/changes\.md\z/i]
27+
options[:skip_patterns] = [/3\.x-api-reference/]
28+
29+
options[:fix_urls] = ->(url) do
30+
url.sub! %r{/blob/master/readme.md}i, ''
31+
url
32+
end
33+
end
34+
1935
version '6' do
2036
self.release = '6.7.0'
2137
self.base_url = 'https://github.com/d3/'

0 commit comments

Comments
 (0)