Lines Matching refs:text

1 # Pod::PlainText -- Convert POD data to formatted ASCII text.
168 # Called for a regular text block. Gets the paragraph, the line number, and
179 # thing into actual text at this part, bypassing the whole internal
227 # Pod::InteriorSequence object and is expected to return the resulting text.
247 # When we output the text, we'll map this back.
340 if ($kind eq 'text') {
356 # for text, in which case we treat it as a verbatim text block.
361 return unless s/^text\b[ \t]*\n?//;
377 # The complicated one. Handle links. Since this is plain text, we can't
378 # actually make any real links, so this is all to figure out what text we
387 # If we were given any explicit text, just output it.
410 my $text = '';
411 # Now build the actual output text.
413 $text = "the $manpage manpage" if length $manpage;
415 $text .= 'the ' . $section . ' entry';
416 $text .= (length $manpage) ? " in the $manpage manpage"
421 $text .= 'the section on "' . $section . '"';
422 $text .= " in the $manpage manpage" if length $manpage;
424 $text;
438 # margin of the text or if we have to put it on a separate line.
496 # Reformat a paragraph of text for the current margin. Takes the text to
497 # reformat and returns the formatted text.
515 # Output text to the output device.
571 Pod::PlainText - Convert POD data to formatted ASCII text
609 The number of spaces to indent regular text, and the default indentation for
618 arbitrary text documents, setting this to true may result in more pleasing
630 The column at which to wrap text on the right-hand side. Defaults to 76.