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 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718
|
package Pod::Elemental::Transformer::List 0.102001;
# ABSTRACT: transform :list regions into =over/=back to save typing
use Moose;
use Pod::Elemental::Transformer 0.101620;
with 'Pod::Elemental::Transformer';
#pod =head1 SYNOPSIS
#pod
#pod By transforming your L<Pod::Elemental::Document> like this:
#pod
#pod my $xform = Pod::Elemental::Transfomer::List->new;
#pod $xform->transform_node($pod_document);
#pod
#pod You can then produce traditional Pod5 lists by using C<:list> regions like
#pod this:
#pod
#pod =for :list
#pod * Doe
#pod a (female) deer
#pod * Ray
#pod a drop of golden sun
#pod
#pod The behavior of list regions is slighly complex, and described L<below|/LIST
#pod REGION PARSING>.
#pod
#pod =head1 LIST REGION PARSING
#pod
#pod There are three kinds of lists: numbered, bulleted, and definition. Every list
#pod must be only one kind of list. Trying to mix list styles will result in an
#pod exception during transformation.
#pod
#pod Lists can be written as a single paragraph beginning C<< =for :list >> or a
#pod region marked off with C<< =begin :list >> and C<< =end :list >>. The content
#pod allowed in each of those two types is defined by the L<Pod
#pod specification|perlpodspec> but boils down to this: "for" regions will only be
#pod able to contain list markers and paragraphs of text, while "begin and end"
#pod regions can contain arbitrary Pod paragraphs and nested list regions.
#pod
#pod All lists have a default C<indentlevel> value of 4. Adding
#pod C<< :over<n> >> to a C<=begin :list> definition will result in that list
#pod having an C<indentlevel> of C<n> instead. (This functionality is not
#pod available for lists defined with C<=for :list>.)
#pod
#pod Ordinary paragraphs in list regions are scanned for lines beginning with list
#pod item markers (see below). If they're found, the list is broken into paragraphs
#pod and markers. Here's a demonstrative example:
#pod
#pod =for :list
#pod * Doe
#pod a deer,
#pod a female deer
#pod * Ray
#pod a drop of golden sun
#pod or maybe it's a golden
#pod drop of sun
#pod
#pod The above is equivalent to
#pod
#pod =begin :list
#pod
#pod * Doe
#pod a deer,
#pod a female deer
#pod * Ray
#pod a drop of golden sun
#pod or maybe it's a golden
#pod drop of sun
#pod
#pod =end :list
#pod
#pod It will be transformed into:
#pod
#pod =over 4
#pod
#pod =item *
#pod
#pod Doe
#pod
#pod a deer,
#pod a female deer
#pod
#pod =item *
#pod
#pod Ray
#pod
#pod a drop of golden sun
#pod or maybe it's a golden
#pod drop of sun
#pod
#pod Which renders as:
#pod
#pod =over 4
#pod
#pod =item *
#pod
#pod Doe
#pod
#pod a deer,
#pod a female deer
#pod
#pod =item *
#pod
#pod Ray
#pod
#pod a drop of golden sun
#pod or maybe it's a golden
#pod drop of sun
#pod
#pod =back
#pod
#pod I<rendering ends here>
#pod
#pod In other words: the B<C<*>> indicates a new bullet. The rest of the line is
#pod made into one paragraph, which will become the text of the bullet point when
#pod rendered. (Yeah, Pod is weird.) To continue the text of the bullet point
#pod on more than one line, start subsequent lines with white space.
#pod
#pod =for :list
#pod * this bullet line
#pod continues on a second line
#pod
#pod Will be transformed into:
#pod
#pod =over 4
#pod
#pod =item *
#pod
#pod this bullet line continues on a second line
#pod
#pod =back
#pod
#pod Which renders as:
#pod
#pod =over 4
#pod
#pod =item *
#pod
#pod this bullet line continues on a second line
#pod
#pod =back
#pod
#pod I<rendering ends here>
#pod
#pod All subsequent lines without markers or leading white space will be kept
#pod together as one paragraph.
#pod
#pod Asterisks mark off bullet list items. Numbered lists are marked off with
#pod "C<1.>" (or any number followed by a dot). Equals signs mark off definition
#pod lists. The markers must be followed by a space.
#pod
#pod Here's a numbered list:
#pod
#pod =for :list
#pod 1. bell
#pod 2. book
#pod 3. candle
#pod
#pod The choice of number doesn't matter. The generated Pod C<=item> commands will
#pod start with 1 and increase by 1 each time.
#pod
#pod This is rendered as:
#pod
#pod =over 4
#pod
#pod =item 1.
#pod
#pod bell
#pod
#pod =item 2.
#pod
#pod book
#pod
#pod =item 3.
#pod
#pod candle
#pod
#pod =back
#pod
#pod I<rendering ends here>
#pod
#pod Definition lists are unusual in that the text on the line after a item marker
#pod will be used as the bullet, rather than the next paragraph. So this input:
#pod
#pod =begin :list
#pod
#pod = benefits
#pod
#pod There are more benefits than can be listed here.
#pod
#pod =end :list
#pod
#pod Or this input:
#pod
#pod =for :list
#pod = benefits
#pod There are more benefits than can be listed here.
#pod
#pod Will become the following output Pod:
#pod
#pod =over 4
#pod
#pod =item benefits
#pod
#pod There are more benefits than can be listed here
#pod
#pod =back
#pod
#pod Which is rendered as:
#pod
#pod =over 4
#pod
#pod =item benefits
#pod
#pod There are more benefits than can be listed here
#pod
#pod =back
#pod
#pod I<rendering ends here>
#pod
#pod If you want to nest lists, you have to make the outer list a begin/end region,
#pod like this:
#pod
#pod =begin :list
#pod
#pod * first outer item
#pod
#pod * second outer item
#pod
#pod =begin :list
#pod
#pod 1. first inner item
#pod
#pod 2. second inner item
#pod
#pod =end :list
#pod
#pod * third outer item
#pod
#pod =end :list
#pod
#pod The inner list, above, could have been written as a compact "for" region.
#pod
#pod =cut
use Pod::Elemental::Element::Pod5::Command;
use Pod::Elemental::Types qw(FormatName);
use namespace::autoclean;
#pod =attr format_name
#pod
#pod This attribute, which defaults to "list" is the region format that will be
#pod processed by this transformer.
#pod
#pod =cut
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
=encoding UTF-8
=head1 NAME
Pod::Elemental::Transformer::List - transform :list regions into =over/=back to save typing
=head1 VERSION
version 0.102001
=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 PERL VERSION
This library should run on perls released even a long time ago. It should work
on any version of perl released in the last five years.
Although it may work on older versions of perl, no guarantee is made that the
minimum required version will not be increased. The version may be increased
for any reason, and there is no promise that patches will be accepted to lower
the minimum required perl.
=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 <cpan@semiotic.systems>
=head1 CONTRIBUTORS
=for stopwords Alex Peters David Golden Justin Cook Karen Etheridge Ricardo Signes Tomas Doran
=over 4
=item *
Alex Peters <lxp@cpan.org>
=item *
David Golden <dagolden@cpan.org>
=item *
Justin Cook <jcook@cray.com>
=item *
Karen Etheridge <ether@cpan.org>
=item *
Ricardo Signes <rjbs@semiotic.systems>
=item *
Tomas Doran <bobtfish@bobtfish.net>
=back
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2022 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
|