mirror of https://github.com/freeCodeCamp/devdocs
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.1 KiB
42 lines
1.1 KiB
6 years ago
|
module Docs
|
||
|
class Gnuplot < FileScraper
|
||
|
self.name = 'Gnuplot'
|
||
|
self.slug = 'gnuplot'
|
||
|
self.type = 'gnuplot'
|
||
|
self.links = {
|
||
|
home: 'http://gnuplot.sourceforge.net/'
|
||
|
}
|
||
|
|
||
|
self.root_path = 'index.html'
|
||
|
|
||
|
html_filters.push 'gnuplot/entries', 'gnuplot/clean_html'
|
||
|
|
||
|
options[:skip_links] = false
|
||
|
|
||
|
options[:skip] = %w(
|
||
|
Copyright.html
|
||
|
External_libraries.html
|
||
|
Known_limitations.html
|
||
|
Introduction.html
|
||
|
About_this_document.html
|
||
|
New_features.html
|
||
|
Differences_from_version_4.html
|
||
|
Seeking_assistance.html
|
||
|
Gnuplot.html
|
||
|
Deprecated_syntax.html
|
||
|
Demos_Online_Examples.html
|
||
|
Terminal_types.html
|
||
|
Plotting_styles.html
|
||
|
Commands.html
|
||
|
Contents.html
|
||
|
Bugs.html
|
||
|
)
|
||
|
|
||
|
options[:attribution] = <<-HTML
|
||
|
Copyright 1986 - 1993, 1998, 2004 Thomas Williams, Colin Kelley<br>
|
||
|
Distributed under the <a href="https://sourceforge.net/p/gnuplot/gnuplot-main/ci/master/tree/Copyright">gnuplot license</a> (rights to distribute modified versions are withheld).
|
||
|
HTML
|
||
|
|
||
|
end
|
||
|
end
|