Lines Matching defs:Text

1 # Pod::Text -- Convert POD data to formatted ASCII text.
2 # $Id: Text.pm,v 2.21 2002/08/04 03:34:58 eagle Exp $
9 # This module converts POD to formatted text. It replaces the old Pod::Text
24 package Pod::Text;
54 # got it near verbatim from the original Pod::Text. It is therefore credited
568 # Wrap a line, indenting by the current left margin. We can't use Text::Wrap
622 # The old Pod::Text module did everything in a pod2text() function. This
628 # module. But the old Pod::Text module supported passing flags to its
641 my $parser = Pod::Text->new (@args);
671 Pod::Text - Convert POD data to formatted ASCII text
675 use Pod::Text;
676 my $parser = Pod::Text->new (sentence => 0, width => 78);
686 Pod::Text is a module that can convert documentation in the POD format (the
691 As a derived class from Pod::Parser, Pod::Text supports the same methods and
693 new parser with C<< Pod::Text->new() >> and then calls either
747 If set to a true value, Pod::Text will assume that each sentence ends in two
775 messages indicate a bug in Pod::Text; you should never see them.
779 (F) Pod::Text was invoked via the compatibility mode pod2text() interface
794 (W) The POD source contained an C<EE<lt>E<gt>> escape that Pod::Text didn't
800 the form C<XE<lt>E<gt>>) that Pod::Text didn't know about.
804 (W) Pod::Text encountered a C<=back> command that didn't correspond to an
816 This is a replacement for an earlier Pod::Text module written by Tom
818 but an interface roughly compatible with the old Pod::Text::pod2text()
822 The original Pod::Text contained code to do formatting via termcap
825 subclass of it does. Look for L<Pod::Text::Termcap>.
829 L<Pod::Parser>, L<Pod::Text::Termcap>, L<pod2text(1)>
838 Pod::Text by Tom Christiansen <tchrist@mox.perl.com> and its conversion to