@@ -5,7 +5,6 @@ class Julia < UrlScraper
55 code : 'https://github.com/JuliaLang/julia'
66 }
77
8- options [ :only_patterns ] = [ /\A manual\/ / , /\A stdlib\/ / ]
98
109 options [ :attribution ] = <<-HTML
1110 © 2009–2019 Jeff Bezanson, Stefan Karpinski, Viral B. Shah, and other contributors< br >
@@ -20,6 +19,7 @@ class Julia < UrlScraper
2019 html_filters . push 'julia/entries' , 'julia/clean_html'
2120
2221 options [ :container ] = '#docs'
22+ options [ :only_patterns ] = [ /\A manual\/ / , /\A base\/ / , /\A stdlib\/ / ]
2323 end
2424
2525 version '1.1' do
@@ -30,6 +30,7 @@ class Julia < UrlScraper
3030 html_filters . push 'julia/entries' , 'julia/clean_html'
3131
3232 options [ :container ] = '#docs'
33+ options [ :only_patterns ] = [ /\A manual\/ / , /\A base\/ / , /\A stdlib\/ / ]
3334 end
3435
3536 version '1.0' do
@@ -40,6 +41,7 @@ class Julia < UrlScraper
4041 html_filters . push 'julia/entries' , 'julia/clean_html'
4142
4243 options [ :container ] = '#docs'
44+ options [ :only_patterns ] = [ /\A manual\/ / , /\A base\/ / , /\A stdlib\/ / ]
4345 end
4446
4547 version '0.7' do
@@ -50,6 +52,7 @@ class Julia < UrlScraper
5052 html_filters . push 'julia/entries' , 'julia/clean_html'
5153
5254 options [ :container ] = '#docs'
55+ options [ :only_patterns ] = [ /\A manual\/ / , /\A base\/ / , /\A stdlib\/ / ]
5356 end
5457
5558 version '0.6' do
@@ -60,6 +63,7 @@ class Julia < UrlScraper
6063 html_filters . push 'julia/entries' , 'julia/clean_html'
6164
6265 options [ :container ] = '#docs'
66+ options [ :only_patterns ] = [ /\A manual\/ / , /\A stdlib\/ / ]
6367 end
6468
6569 version '0.5' do
@@ -68,6 +72,8 @@ class Julia < UrlScraper
6872 self . type = 'sphinx_simple'
6973
7074 html_filters . push 'julia/entries_sphinx' , 'julia/clean_html_sphinx' , 'sphinx/clean_html'
75+
76+ options [ :only_patterns ] = [ /\A manual\/ / , /\A stdlib\/ / ]
7177 end
7278
7379 def get_latest_version ( opts )
0 commit comments