CSS::Parse::Packed - A CSS::Parse module packed duplicated selectors.


NAME

CSS::Parse::Packed - A CSS::Parse module packed duplicated selectors.


VERSION

This document describes CSS::Parse::Packed version 0.0.1


SYNOPSIS

    use CSS;
    my $css = CSS->new({ parser => 'CSS::Parse::Packed' });


DESCRIPTION

This module is a parser for CSS.pm. It parsing CSS by regular expression based on CSS::Parse::Lite and packed duplicated selectors.

Example

Original is:

    body { background-color:#FFFFFF; font-size: 1em; }
    body { padding:6px; font-size: 1.5em; }

After parings is:

    body { padding: 6px; background-color: #FFFFFF; font-size: 1.5em }


SEE ALSO

the CSS manpage, the CSS::Parse::Lite manpage


AUTHOR

Hiroshi Sakai <ziguzagu@gmail.com>


LICENCE AND COPYRIGHT

Copyright (c) 2007, Hiroshi Sakai <ziguzagu@gmail.com>. All rights reserved.

This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See the perlartistic manpage.