1Pod::Wrap::Pretty(3) User Contributed Perl Documentation Pod::Wrap::Pretty(3)
2
3
4
6 Pod::Wrap::Pretty - reformat Pod to be nicely line wrapped
7
9 use Pod::Wrap::Pretty;
10
11 my $w = new Pod::Wrap::Pretty;
12
13 $w->parse_from_filehandle($fh);
14 $w->parse_from_file($filename);
15
17 This is a Pod::Wrap subclass, which is in turn a Pod::Parser subclass.
18 Please see the Pods of those modules for further API documentation.
19
20 This module performs the exact same functionality as Pod::Wrap except
21 that all pre-existing newlines are removed prior to line breaking and
22 trailing whitespace is removed from the end of paragraphs. This
23 provides nicely formatted paragraphs similar to vim's "gq" command.
24
26 These "Pod::Wrap" subroutines have been overridden.
27
28 • textblock
29
31 Yuval Kogman <nothingmuch@woobling.org> author of Pod::Wrap
32
34 Please contact the author directly via e-mail.
35
37 Joshua Hoblitt <jhoblitt@cpan.org>
38
40 Copyright (c) 2005 Joshua Hoblitt. All rights reserved. This program
41 is free software; you can redistribute it and/or modify it under the
42 same terms as Perl itself.
43
44 The full text of the licenses can be found in the LICENSE file included
45 with this module, or in perlartistic and perlgpl Pods as supplied with
46 Perl 5.8.1 and later.
47
49 Pod::Wrap, Pod::Parser
50
51
52
53perl v5.32.1 2021-01-27 Pod::Wrap::Pretty(3)