File: README.md

package info (click to toggle)
libcss-packer-perl 2.09-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 220 kB
  • sloc: perl: 499; makefile: 2
file content (117 lines) | stat: -rw-r--r-- 2,982 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
# NAME

CSS::Packer - Another CSS minifier

<div>

    <a href='https://travis-ci.org/leejo/css-packer-perl?branch=master'><img src='https://travis-ci.org/leejo/css-packer-perl.svg?branch=master' alt='Build Status' /></a>
    <a href='https://coveralls.io/r/leejo/css-packer-perl'><img src='https://coveralls.io/repos/leejo/css-packer-perl/badge.png?branch=master' alt='Coverage Status' /></a>
</div>

# VERSION

Version 2.09

# DESCRIPTION

A fast pure Perl CSS minifier.

# SYNOPSIS

    use CSS::Packer;

    my $packer = CSS::Packer->init();

    $packer->minify( $scalarref, $opts );

To return a scalar without changing the input simply use (e.g. example 2):

    my $ret = $packer->minify( $scalarref, $opts );

For backward compatibility it is still possible to call 'minify' as a function:

    CSS::Packer::minify( $scalarref, $opts );

First argument must be a scalarref of CSS-Code.
Second argument must be a hashref of options. Possible options are:

- compress

    Defines compression level. Possible values are 'minify' and 'pretty'.
    Default value is 'pretty'.

    'pretty' converts

        a {
        color:          black
        ;}   div

        { width:100px;
        }

    to

        a{
        color:black;
        }
        div{
        width:100px;
        }

    'minify' converts the same rules to

        a{color:black;}div{width:100px;}

- indent

    Defines number of spaces, used for indentation. Used only when compress is 'pretty'.
    Default value is 0.

- copyright

    You can add a copyright notice at the top of the script.

- remove\_copyright

    If there is a copyright notice in a comment it will only be removed if this
    option is set to a true value. Otherwise the first comment that contains the
    word "copyright" will be added at the top of the packed script. A copyright
    comment will be overwritten by a copyright notice defined with the copyright
    option.

- no\_compress\_comment

    If not set to a true value it is allowed to set a CSS comment that
    prevents the input being packed or defines a compression level.

        /* CSS::Packer _no_compress_ */
        /* CSS::Packer pretty */

# AUTHOR

Merten Falk, `<nevesenin at cpan.org>`. Now maintained by Lee
Johnson (LEEJO)

# BUGS

Please report any bugs or feature requests through
the web interface at [http://github.com/leejo/css-packer-perl/issues](http://github.com/leejo/css-packer-perl/issues).  I will be notified, and then you'll
automatically be notified of progress on your bug as I make changes.

# SUPPORT

You can find documentation for this module with the perldoc command.

perldoc CSS::Packer

# COPYRIGHT & LICENSE

Copyright 2008 - 2011 Merten Falk, all rights reserved.

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

# SEE ALSO

[CSS::Minifier](https://metacpan.org/pod/CSS%3A%3AMinifier),
[CSS::Minifier::XS](https://metacpan.org/pod/CSS%3A%3AMinifier%3A%3AXS)