We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 591c300 commit f489154Copy full SHA for f489154
lib/docs/filters/gnuplot/clean_html.rb
@@ -1,3 +1,4 @@
1
+# coding: utf-8
2
module Docs
3
class Gnuplot
4
class CleanHtmlFilter < Filter
@@ -14,6 +15,9 @@ def call
14
15
title = css('.HUGE')[0]
16
title.name = 'h1'
17
18
+ # weird .svg links
19
+ css('#tex2html_wrap21553').remove
20
+
21
subtitle = css('.XLARGE')[0]
22
title.content = title.content + ' − ' + subtitle.content
23
lib/docs/scrapers/gnuplot.rb
@@ -1,7 +1,7 @@
class Gnuplot < FileScraper
self.type = 'gnuplot'
- self.release = '5.2.8'
+ self.release = '5.4.0'
5
self.links = {
6
home: 'http://www.gnuplot.info/',
7
code: 'https://sourceforge.net/projects/gnuplot/'
0 commit comments