
Data::Printer::Filter::URI - pretty-printing URI objects

version 0.007

# In your program:
use Data::Printer filters => {
-external => [ 'URI' ],
};
# or, in your .dataprinter file:
{
filters => {
-external => [ 'URI' ],
},
};
# You can also setup color and display details:
use Data::Printer {
filters => {
-external => [ 'URI' ],
}, color => {
uri_scheme => 'bright_green',
uri_host => 'bold',
},
};

This is a filter plugin for Data::Printer. It filters through several URI manipulation classes and displays the URI as a fancy string.
Mojo::URL is also supported.

Stanislaw Pusep <stas@sysd.org>

This software is copyright (c) 2012 by Stanislaw Pusep.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.