mirror of
https://github.com/koreader/koreader.git
synced 2025-08-10 00:52:38 +00:00
util.prettifyCSS(): handle better :is() and similar
This commit is contained in:
@@ -1275,6 +1275,11 @@ function util.prettifyCSS(css_text, condensed)
|
||||
s = s:gsub(";", "\b")
|
||||
return s
|
||||
end)
|
||||
-- Protect ',' inside () (ie. ":is(td, th)") by replacing them with rare control chars
|
||||
css_text = css_text:gsub("%b()/", function(s)
|
||||
s = s:gsub(",", "\v")
|
||||
return s
|
||||
end)
|
||||
-- Cleanup declarations (the most nested ones only, which may be
|
||||
-- contained in "@supports (...) {...}" or "@media (...) {...}")
|
||||
css_text = css_text:gsub(" *{([^{}]*)} *", function(s)
|
||||
|
||||
Reference in New Issue
Block a user