• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/Text/H08-Feb-1998-1,058577

t/H23-Feb-1998-224172

ChangesH A D29-Mar-19984.1 KiB10986

MANIFESTH A D23-Feb-199889 87

Makefile.PLH A D23-Feb-1998236 85

READMEH A D29-Mar-19981.2 KiB3726

README

1Text::Format
2
3format()        Format text into a paragraph.  Text is first broken into
4                words and then joined back together to make up the
5                paragraph.  There are numerous attributes you can set to
6                your liking.
7
8paragraphs()    Treats each element of the array passed in as a separate
9                paragraph and passes them to format() for formatting.
10                The list returned will be then formatted into separate
11                paragraphs.
12
13center()        Centers all the lines that were passed in.
14
15expand()        Expand tabs into spaces.
16
17unexpand()      Turn spaces into tabs.  First calls expand() to expand
18                tabs into spaces and then turns tabstop number of spaces
19                into tabs, you can set tabstop size with tabstop().
20
21Text::NWrap
22
23wrap()          Simple interface to Text::Format->format(), acts similar
24                to Text::Wrap::wrap()
25
26To install :
27
28perl Makefile.PL
29make
30make test
31make install
32
33Copyright (c) 1998 Gabor Egressy <gabor@vmunix.com>.
34All rights reserved.  All wrongs reversed.  This program is free
35software; you can redistribute and/or modify it under the same terms as
36Perl itself.
37