Metadata-Version: 1.1
Name: pelican-minification
Version: 0.1.0
Summary: Minifies HTML, CSS and JS of generated Pelican content.
Home-page: https://github.com/dArignac/pelican-minification
Author: Alexander Herrmann
Author-email: darignac@gmail.com
License: MIT
Description: pelican-minification
        ====================
        
        Content minification for the `Pelican`_ site generator.
        
        
        Installation and Usage
        ----------------------
        
        pelican-minification depends on the following packages that will be installed automatically, see below:
        
        * `htmlmin >= 0.1.5`_
        * `csscompressor >= 0.9.1`_
        * `Pelican`_
        
        
        Install pelican-minification into your Python interpreter using pip:
        
        .. code-block:: shell
        
            pip install pelican-minification
        
        
        Then add the plugin to the PLUGINS setting within your *pelicanconf.py*:
        
        .. code-block:: python
        
            PLUGINS = [
                ...
                'minification',
            ]
        
        Upon calling the *pelican* command now, all HTML and CSS files are compressed automatically.
        
        
        .. _htmlmin >= 0.1.5: https://pypi.python.org/pypi/htmlmin/0.1.5
        .. _csscompressor >= 0.9.1: https://pypi.python.org/pypi/csscompressor/0.9.3
        .. _Pelican: https://pypi.python.org/pypi/pelican/3.3
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Text Processing :: Markup
