I want to remove unused styles from a style sheet. So first off I'd like a list of all the selectors. How would I do this using
CSS.pm? I can't make head nor tail of the docs (this is almost certainly not the fault of the docs). :-)
I want to iterate over each selector in the CSS object and get its name. Dumping the object shows that everything is there but I can't work out which assessor to use never mind how to use it.
My current attempts have proven woefully inadequate. Any pointers appreciated.
#!/usr/bin/perl
use strict;
use warnings;
use CSS;
use Data::Dumper;
$Data::Dumper::Indent = 1;
my $css_data = do{$/ = undef; <DATA>};
#print qq{$css_data\n};
my $css = CSS->new();
$css->read_string($css_data);
#print Dumper $css;
# fails
#my $style = $css->get_style_by_selector('selector_name')
# or die qq{could't get style\n};
#my @styles = $css->styles;
#my $selectors = $css->selectors;
# works
print $css->output();
# [id://208695|Simplifying CSS]
__DATA__
.selector_name {
margin-left: 1em;
}
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.