Prechádzať zdrojové kódy

Update SQLite documentation (3.44.2)

Simon Legner 1 rok pred
rodič
commit
6b1bbd6e9f

+ 1 - 0
lib/docs/filters/sqlite/clean_html.rb

@@ -88,6 +88,7 @@ module Docs
         end
 
         css('svg *[style], svg *[fill]').each do |node|
+          next if slug == 'geopoly'
           # transform style in SVG diagrams, e.g. on https://sqlite.org/lang_insert.html
           if node['style'] == 'fill:rgb(0,0,0)' or node['fill'] == 'rgb(0,0,0)'
             node.add_class('fill')

+ 1 - 1
lib/docs/scrapers/sqlite.rb

@@ -2,7 +2,7 @@ module Docs
   class Sqlite < UrlScraper
     self.name = 'SQLite'
     self.type = 'sqlite'
-    self.release = '3.43.0'
+    self.release = '3.44.2'
     self.base_url = 'https://sqlite.org/'
     self.root_path = 'docs.html'
     self.initial_paths = %w(keyword_index.html)