Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

html::rewriteattributes::resources(3pm) [debian man page]

HTML::RewriteAttributes::Resources(3pm) 		User Contributed Perl Documentation		   HTML::RewriteAttributes::Resources(3pm)

NAME
HTML::RewriteAttributes::Resources - concise resource-link rewriting SYNOPSIS
# writing some HTML email I see.. $html = HTML::RewriteAttributes::Resources->rewrite($html, sub { my $uri = shift; my $content = render_template($uri); my $cid = generate_cid_from($content); $mime->attach($cid => content); return "cid:$cid"; }); # need to inline CSS too? $html = HTML::RewriteAttributes::Resources->rewrite($html, sub { # see above }, inline_css => sub { my $uri = shift; return render_template($uri); }); # need to inline CSS and follow @imports? $html = HTML::RewriteAttributes::Resources->rewrite($html, sub { # see above }, inline_css => sub { # see above }, inline_imports => 1); DESCRIPTION
"HTML::RewriteAttributes::Resources" is a special case of HTML::RewriteAttributes for rewriting links to resources. This is to facilitate generating, for example, HTML email in an extensible way. We don't care about how to fetch resources and attach them to the MIME object; that's your job. But you don't have to care about how to rewrite the HTML. METHODS
"new" You don't need to call "new" explicitly - it's done in "rewrite". It takes no arguments. "rewrite" HTML, callback[, args] -> HTML See the documentation of HTML::RewriteAttributes. The callback receives as arguments the resource URI (the attribute value), then, in a hash, "tag" and "attr". Inlining CSS "rewrite" can automatically inline CSS for you. Passing "inline_css" will invoke that callback to inline "style" tags. The callback receives as its argument the URI to a CSS file, and expects as a return value the contents of that file, so that it may be inlined. Returning "undef" prevents any sort of inlining. Passing "inline_imports" (a boolean) will look at any inline CSS and call the "inline_css" callback to inline that import. This keeps track of what CSS has already been inlined, and won't inline a particular CSS file more than once (to prevent import loops). SEE ALSO
HTML::RewriteAttributes, HTML::Parser, Email::MIME::CreateHTML AUTHOR
Shawn M Moore, "<sartak@bestpractical.com>" LICENSE
Copyright 2008-2010 Best Practical Solutions, LLC. HTML::RewriteAttributes::Resources is distributed under the same terms as Perl itself. perl v5.10.1 2010-11-18 HTML::RewriteAttributes::Resources(3pm)

Check Out this Related Man Page

HTML::Packer(3pm)					User Contributed Perl Documentation					 HTML::Packer(3pm)

NAME
HTML::Packer - Another HTML code cleaner VERSION
Version 1.004001 DESCRIPTION
A HTML Compressor. SYNOPSIS
use HTML::Packer; my $packer = HTML::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: HTML::Packer::minify( $scalarref, $opts ); First argument must be a scalarref of HTML-Code. Second argument must be a hashref of options. Possible options are remove_comments HTML-Comments will be removed if 'remove_comments' has a true value. remove_newlines ALL newlines will be removed if 'remove_newlines' has a true value. do_javascript Defines compression level for javascript. Possible values are 'clean', 'obfuscate', 'shrink' and 'best'. Default is no compression for javascript. This option only takes effect if JavaScript::Packer is installed. do_stylesheet Defines compression level for CSS. Possible values are 'minify' and 'pretty'. Default is no compression for CSS. This option only takes effect if CSS::Packer is installed. no_compress_comment If not set to a true value it is allowed to set a HTML comment that prevents the input being packed. <!-- HTML::Packer _no_compress_ --> Is not set by default. html5 If set to a true value closing slashes will be removed from void elements. AUTHOR
Merten Falk, "<nevesenin at cpan.org>" BUGS
Please report any bugs or feature requests through the web interface at https://github.com/nevesenin/html-packer-perl/issues <https://github.com/nevesenin/html-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 HTML::Packer COPYRIGHT &; LICENSE Copyright 2009 - 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
HTML::Clean perl v5.14.2 2012-02-20 HTML::Packer(3pm)
Man Page