Update SQLite documentation (3.44.2)

This commit is contained in:
Simon Legner 2024-01-05 20:51:06 +01:00
parent 8697de8567
commit 6b1bbd6e9f
2 changed files with 2 additions and 1 deletions

View file

@ -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')

View file

@ -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)