~ubuntu-branches/ubuntu/karmic/libtext-wikiformat-perl/karmic

« back to all changes in this revision

Viewing changes to lib/Text/WikiFormat.pm

  • Committer: Bazaar Package Importer
  • Author(s): Dominic Hargreaves
  • Date: 2006-08-30 09:01:39 UTC
  • mfrom: (1.1.2 upstream) (3.1.1 etch)
  • Revision ID: james.westby@ubuntu.com-20060830090139-8csta1c4e2duqtna
Tags: 0.78-0.1
* Non-maintainer upload.
* New upstream release. Closes: #367778.

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
use Scalar::Util qw( blessed reftype );
10
10
 
11
11
use vars qw( $VERSION %tags $indent );
12
 
$VERSION = '0.76'; 
 
12
$VERSION = '0.78'; 
13
13
$indent  = qr/^(?:\t+|\s{4,})/;
14
14
%tags    = (
15
15
        indent          => qr/^(?:\t+|\s{4,})/,
212
212
                *{ $op . '_blocks' } = sub
213
213
                {
214
214
                        my $blocks    = shift;
 
215
                        return unless @$blocks;
 
216
 
215
217
                        my @processed = shift @$blocks;
216
218
 
217
219
                        for my $block (@$blocks)
743
745
 
744
746
=head1 COPYRIGHT
745
747
 
746
 
Copyright (c) 2002 - 2005, chromatic.  All rights reserved.  This module is
 
748
Copyright (c) 2002 - 2006, chromatic.  All rights reserved.  This module is
747
749
distributed under the same terms as Perl itself.