Subject: | format pod better |
Format pod a little nicer.
In particular render better when converted to HTML such as on
search.cpan.org.
Subject: | 0001-Tidy-up-pod-a-little-to-format-better.patch |
From 57f2b9a876779426100d72d81da46b3275ca55f3 Mon Sep 17 00:00:00 2001
From: Michael Stevens <mstevens@etla.org>
Date: Sat, 19 Feb 2011 21:11:45 +0000
Subject: [PATCH] Tidy up pod a little to format better.
---
lib/CSS/Inliner.pm | 23 ++++++++++++++++-------
1 files changed, 16 insertions(+), 7 deletions(-)
diff --git a/lib/CSS/Inliner.pm b/lib/CSS/Inliner.pm
index 13fd723..c5b1d6a 100644
--- a/lib/CSS/Inliner.pm
+++ b/lib/CSS/Inliner.pm
@@ -29,13 +29,13 @@ CSS::Inliner - Library for converting CSS <style> blocks to inline styles.
=head1 SYNOPSIS
-use Inliner;
+ use Inliner;
-my $inliner = new Inliner();
+ my $inliner = new Inliner();
-$inliner->read_file({filename => 'myfile.html'});
+ $inliner->read_file({filename => 'myfile.html'});
-print $inliner->inlinify();
+ print $inliner->inlinify();
=head1 DESCRIPTION
@@ -102,7 +102,7 @@ stylesheet reference within the document.
This method requires you to pass in a params hash that contains a
url argument for the requested document. For example:
-$self->fetch_file({ url => 'http://www.example.com' });
+ $self->fetch_file({ url => 'http://www.example.com' });
=cut
@@ -130,7 +130,7 @@ automatically.
This method requires you to pass in a params hash that contains a
filename argument. For example:
-$self->read_file({filename => 'myfile.html'});
+ $self->read_file({filename => 'myfile.html'});
=cut
@@ -162,7 +162,7 @@ separately. Class/ID/Names used in the markup are left alone.
This method requires you to pass in a params hash that contains scalar
html data. For example:
-$self->read({html => $html});
+ $self->read({html => $html});
=cut
@@ -648,9 +648,18 @@ Kevin Kamel <C<kamelkev@mailermailer.com>>
=head1 CONTRIBUTORS
+=over 4
+
+=item *
+
Vivek Khera <C<vivek@khera.org>>
+
+=item *
+
Michael Peters <C<wonko@cpan.org>>
+=back
+
=head1 LICENSE
This module is Copyright 2010 Khera Communications, Inc. It is
--
1.7.3.5