]> git.draconx.ca Git - homepage.git/blob - lib/css-clean-selectors.rb
Fix media queries that disable justification.
[homepage.git] / lib / css-clean-selectors.rb
1 # Nick's web site: css_clean_selectors filter.  Remove unnecessary whitespace
2 # from CSS selectors as this improves compatibility with old versions of IE.
3 #
4 # Copyright © 2020 Nick Bowler
5 #
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with this program.  If not, see <https://www.gnu.org/licenses/>.
18
19 class CssCleanSelectorsFilter < Nanoc::Filter
20     identifier :css_clean_selectors
21
22     require 'crass'
23
24     def run(content, params = {})
25         tree = Crass.parse(content, params)
26
27         queue = Array.new(tree)
28         while i = queue.shift do
29           if i[:node] == :at_rule
30             case i[:name]
31             when "media", "supports"
32               # Re-parse the block as a list of rules.
33               s = Crass::Parser.stringify(i[:block])
34               i[:block] = Crass::Parser.parse_rules(s, params)
35               queue += i[:block]
36             end
37           end
38
39           if i[:selector]
40             ts = i[:selector][:tokens]
41             ts.each_index do |i|
42                 next if ts[i].nil? or ts[i][:node] != :delim
43                 next if ts[i][:value] == '*'
44
45                 ts[i-1] = nil if ts[i-1] and ts[i-1][:node] == :whitespace
46                 ts[i+1] = nil if ts[i+1] and ts[i+1][:node] == :whitespace
47             end
48           end
49         end
50
51         return Crass::Parser.stringify(tree)
52     end
53 end