1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433
|
package Pod::Elemental::Transformer::List;
{
$Pod::Elemental::Transformer::List::VERSION = '0.102000';
}
use Moose;
use Pod::Elemental::Transformer 0.101620;
with 'Pod::Elemental::Transformer';
# ABSTRACT: transform :list regions into =over/=back to save typing
use Pod::Elemental::Element::Pod5::Command;
use Pod::Elemental::Types qw(FormatName);
use namespace::autoclean;
has format_name => (
is => 'ro',
isa => FormatName,
default => 'list',
);
sub transform_node {
my ($self, $node) = @_;
for my $i (reverse(0 .. $#{ $node->children })) {
my $para = $node->children->[ $i ];
next unless $self->__is_xformable($para);
my @replacements = $self->_expand_list_paras( $para );
splice @{ $node->children }, $i, 1, @replacements;
}
}
sub __is_xformable {
my ($self, $para) = @_;
return unless $para->isa('Pod::Elemental::Element::Pod5::Region')
and $para->format_name eq $self->format_name;
confess("list regions must be pod (=begin :" . $self->format_name . ")")
unless $para->is_pod;
return 1;
}
my %_TYPE = (
'=' => 'def',
'*' => 'bul',
'0' => 'num',
);
sub _expand_list_paras {
my ($self, $parent) = @_;
my @replacements;
my $type;
my $i = 1;
PARA: for my $para (@{ $parent->children }) {
unless ($para->isa('Pod::Elemental::Element::Pod5::Ordinary')) {
push @replacements, $self->__is_xformable($para)
? $self->_expand_list_paras($para)
: $para;
next PARA;
}
my $pip = q{}; # paragraph in progress
my @lines = split /\n/, $para->content;
LINE: while (@lines) {
my $line = shift @lines;
if (my ($prefix, $rest) = $line =~ m{^(=|\*|(?:[0-9]+\.))\s+(.+)$}) {
if (length $pip) {
push @replacements, Pod::Elemental::Element::Pod5::Ordinary->new({
content => $pip,
});
}
$prefix = '0' if $prefix =~ /^[0-9]/;
my $line_type = $_TYPE{ $prefix };
$type ||= $line_type;
confess("mismatched list types; saw $line_type marker after $type")
if $line_type ne $type;
my $method = "__paras_for_$type\_marker";
my ($marker, $leftover) = $self->$method($rest, $i++);
push @replacements, $marker;
if (defined $leftover and length $leftover) {
while (@lines && $lines[0] =~ /^\s+/) {
my $cont = shift @lines;
$cont =~ s/^\s+//;
$leftover .= " $cont";
}
push @replacements, Pod::Elemental::Element::Pod5::Ordinary->new({
content => $leftover,
});
}
$pip = q{};
} else {
$pip .= "$line\n";
}
}
if (length $pip) {
push @replacements, Pod::Elemental::Element::Pod5::Ordinary->new({
content => $pip,
});
}
}
my $indentlevel = 4;
$indentlevel = $1 if $parent->content =~ /:over<(\d+)>/;
unshift @replacements, Pod::Elemental::Element::Pod5::Command->new({
command => 'over',
content => $indentlevel,
});
push @replacements, Pod::Elemental::Element::Pod5::Command->new({
command => 'back',
content => '',
});
return @replacements;
}
sub __paras_for_num_marker {
my ($self, $rest, $i) = @_;
return (
Pod::Elemental::Element::Pod5::Command->new({
command => 'item',
content => $i,
}),
$rest,
);
}
sub __paras_for_def_marker {
my ($self, $rest) = @_;
return (
Pod::Elemental::Element::Pod5::Command->new({
command => 'item',
content => $rest,
}),
'',
);
}
sub __paras_for_bul_marker {
my ($self, $rest) = @_;
return (
Pod::Elemental::Element::Pod5::Command->new({
command => 'item',
content => '*',
}),
$rest,
);
}
1;
__END__
=pod
=head1 NAME
Pod::Elemental::Transformer::List - transform :list regions into =over/=back to save typing
=head1 VERSION
version 0.102000
=head1 SYNOPSIS
By transforming your L<Pod::Elemental::Document> like this:
my $xform = Pod::Elemental::Transfomer::List->new;
$xform->transform_node($pod_document);
You can then produce traditional Pod5 lists by using C<:list> regions like
this:
=for :list
* Doe
a (female) deer
* Ray
a drop of golden sun
The behavior of list regions is slighly complex, and described L<below|/LIST
REGION PARSING>.
=head1 ATTRIBUTES
=head2 format_name
This attribute, which defaults to "list" is the region format that will be
processed by this transformer.
=head1 LIST REGION PARSING
There are three kinds of lists: numbered, bulleted, and definition. Every list
must be only one kind of list. Trying to mix list styles will result in an
exception during transformation.
Lists can be written as a single paragraph beginning C<< =for :list >> or a
region marked off with C<< =begin :list >> and C<< =end :list >>. The content
allowed in each of those two types is defined by the L<Pod
specification|perlpodspec> but boils down to this: "for" regions will only be
able to contain list markers and paragraphs of text, while "begin and end"
regions can contain arbitrary Pod paragraphs and nested list regions.
All lists have a default C<indentlevel> value of 4. Adding
C<< :over<n> >> to a C<=begin :list> definition will result in that list
having an C<indentlevel> of C<n> instead. (This functionality is not
available for lists defined with C<=for :list>.)
Ordinary paragraphs in list regions are scanned for lines beginning with list
item markers (see below). If they're found, the list is broken into paragraphs
and markers. Here's a demonstrative example:
=for :list
* Doe
a deer,
a female deer
* Ray
a drop of golden sun
or maybe it's a golden
drop of sun
The above is equivalent to
=begin :list
* Doe
a deer,
a female deer
* Ray
a drop of golden sun
or maybe it's a golden
drop of sun
=end :list
It will be transformed into:
=over 4
=item *
Doe
a deer,
a female deer
=item *
Ray
a drop of golden sun
or maybe it's a golden
drop of sun
Which renders as:
=over 4
=item *
Doe
a deer,
a female deer
=item *
Ray
a drop of golden sun
or maybe it's a golden
drop of sun
=back
I<rendering ends here>
In other words: the B<C<*>> indicates a new bullet. The rest of the line is
made into one paragraph, which will become the text of the bullet point when
rendered. (Yeah, Pod is weird.) To continue the text of the bullet point
on more than one line, start subsequent lines with white space.
=for :list
* this bullet line
continues on a second line
Will be transformed into:
=over 4
=item *
this bullet line continues on a second line
=back
Which renders as:
=over 4
=item *
this bullet line continues on a second line
=back
I<rendering ends here>
All subsequent lines without markers or leading white space will be kept
together as one paragraph.
Asterisks mark off bullet list items. Numbered lists are marked off with
"C<1.>" (or any number followed by a dot). Equals signs mark off definition
lists. The markers must be followed by a space.
Here's a numbered list:
=for :list
1. bell
2. book
3. candle
The choice of number doesn't matter. The generated Pod C<=item> commands will
start with 1 and increase by 1 each time.
This is rendered as:
=over 4
=item 1.
bell
=item 2.
book
=item 3.
candle
=back
I<rendering ends here>
Definition lists are unusual in that the text on the line after a item marker
will be used as the bullet, rather than the next paragraph. So this input:
=begin :list
= benefits
There are more benefits than can be listed here.
=end :list
Or this input:
=for :list
= benefits
There are more benefits than can be listed here.
Will become the following output Pod:
=over 4
=item benefits
There are more benefits than can be listed here
=back
Which is rendered as:
=over 4
=item benefits
There are more benefits than can be listed here
=back
I<rendering ends here>
If you want to nest lists, you have to make the outer list a begin/end region,
like this:
=begin :list
* first outer item
* second outer item
=begin :list
1. first inner item
2. second inner item
=end :list
* third outer item
=end :list
The inner list, above, could have been written as a compact "for" region.
=head1 AUTHOR
Ricardo SIGNES <rjbs@cpan.org>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2013 by Ricardo SIGNES.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
|