我正在尝试使用一个all.css
包含一些类的文件,并且想要一个green.css
只包含绿色类的文件。
我正在使用perl
CSS
模块,关于如何使用它来搜索包含.green
并以结尾的行{
然后提取css块的任何建议?
我是 perl 的新手,到目前为止,我试图只打印匹配“绿色”的选择器行,但我无法让它工作:
my $css = CSS->new( { 'parser' => 'CSS::Parse::Lite'} );
print $styleSheetPath;
$css->read_file($styleSheetPath);
open my $fileHandle, ">>", "green.css" or die "Can't open 'green.css'\n";
#search for lines that contain .green and end { and then extract css block
#and write to green.css
serialize($css);
sub serialize{
my ($obj) = @_;
for my $style (@{$obj->{styles}}){
print join "\n ", map {$_->{name}} @{$style->{selectors}};
if ( grep( /green/, @{$style->{selectors}} )) {
print "green matches ";
print $_->{name};
}
}
}