NAME
    Mojolicious::Plugin::Sprite - let you easy introduce and maintain CSS
    sprites in your web-site.
SYNOPSIS
        # Mojolicious
        $self->plugin('Sprite');
        # Mojolicious::Lite
        plugin 'Sprite';
        # Custom options
        plugin 'Sprite' => {
            config  => "sprite.xml",
            css_url => "/css/sprite.css"
        };
DESCRIPTION
    This plugin parses HTML out and converts images into sprites according
    to rules of configuration file,
    In other words, HTML tag  will be converted to
     and will be used CSS like:
        .spr {
            display: -moz-inline-stack;
            display: inline-block;
            zoom: 1;
            *display: inline;
            background-repeat: no-repeat;
        }
        .spr-icons-img1,.spr-icons-img2 {
            background-image: url('/sprites/sprite.png?1376352016') !important;
        }
        .spr-icons-img1 {
            background-position: 0px 0px !important;
            width:32px;
            height:32px;
        }
        .spr-icons-img2 {
            background-position: 0px -32px !important;
            width:48px;
            height:48px;
        }
    For generating sprites you can use CSS::SpriteBuilder module.
METHODS
    Mojolicious::Plugin::Sprite inherits all methods from
    Mojolicious::Plugin and implements the following new ones.
  "register"
        $plugin->register;
    Register plugin in Mojolicious application.
CONFIGURATION
    The following options can be set for the plugin:
    *   config [ = "sprite.xml" ]
        Specify XML config file like:
            
              
                
                
                ...
              
            
        * This file can be generated by CSS::SpriteBuilder.
        Or hash like:
            {
                "icons/small/Add.png" => ".spr-icons-small-add",
                "icons/medium/CD.png" => ".spr-icons-medium-cd",
                ...
            }
    *   css_url [ = "/css/sprite.css" ]
        Specify url for CSS file.
        * This file can be generated by CSS::SpriteBuilder.
SEE ALSO
    Mojolicious, Mojolicious::Guides, CSS::SpriteBuilder.
AUTHOR
    Yuriy Ustushenko, 
COPYRIGHT AND LICENSE
    Copyright (C) 2013 Yuriy Ustushenko
    This library is free software; you can redistribute it and/or modify it
    under the same terms as Perl itself.
 will be converted to
     and will be used CSS like:
        .spr {
            display: -moz-inline-stack;
            display: inline-block;
            zoom: 1;
            *display: inline;
            background-repeat: no-repeat;
        }
        .spr-icons-img1,.spr-icons-img2 {
            background-image: url('/sprites/sprite.png?1376352016') !important;
        }
        .spr-icons-img1 {
            background-position: 0px 0px !important;
            width:32px;
            height:32px;
        }
        .spr-icons-img2 {
            background-position: 0px -32px !important;
            width:48px;
            height:48px;
        }
    For generating sprites you can use CSS::SpriteBuilder module.
METHODS
    Mojolicious::Plugin::Sprite inherits all methods from
    Mojolicious::Plugin and implements the following new ones.
  "register"
        $plugin->register;
    Register plugin in Mojolicious application.
CONFIGURATION
    The following options can be set for the plugin:
    *   config [ = "sprite.xml" ]
        Specify XML config file like:
            
              
                
                
                ...
              
            
        * This file can be generated by CSS::SpriteBuilder.
        Or hash like:
            {
                "icons/small/Add.png" => ".spr-icons-small-add",
                "icons/medium/CD.png" => ".spr-icons-medium-cd",
                ...
            }
    *   css_url [ = "/css/sprite.css" ]
        Specify url for CSS file.
        * This file can be generated by CSS::SpriteBuilder.
SEE ALSO
    Mojolicious, Mojolicious::Guides, CSS::SpriteBuilder.
AUTHOR
    Yuriy Ustushenko, 
COPYRIGHT AND LICENSE
    Copyright (C) 2013 Yuriy Ustushenko
    This library is free software; you can redistribute it and/or modify it
    under the same terms as Perl itself.