Skip to content

Commit 1a03dc7

Browse files
committed
Update SQLite documentation (3.49.1)
1 parent ab18909 commit 1a03dc7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/docs/filters/sqlite/clean_html.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def call
9090
css('svg *[style], svg *[fill]').each do |node|
9191
next if slug == 'geopoly'
9292
# transform style in SVG diagrams, e.g. on https://sqlite.org/lang_insert.html
93-
if node['style'] == 'fill:rgb(0,0,0)' or node['fill'] == 'rgb(0,0,0)'
93+
if (node['style'] or '').starts_with?('fill:rgb(0,0,0)') or node['fill'] == 'rgb(0,0,0)'
9494
node.add_class('fill')
9595
node.remove_attribute('fill')
9696
elsif node['style'] == 'fill:none;stroke-width:2.16;stroke:rgb(0,0,0);'

lib/docs/scrapers/sqlite.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module Docs
22
class Sqlite < UrlScraper
33
self.name = 'SQLite'
44
self.type = 'sqlite'
5-
self.release = '3.47.0'
5+
self.release = '3.49.1'
66
self.base_url = 'https://sqlite.org/'
77
self.root_path = 'docs.html'
88
self.initial_paths = %w(keyword_index.html)

0 commit comments

Comments
 (0)