Lines Matching refs:text

108 A heading (C<=head1> or C<=head2>) without any text? That ain't no
187 =item * Spurious text after =pod / =cut
206 the same text. Potential hyperlinks to such a text cannot be unique then.
226 text contents. You probably want to delete empty items.
230 A list introduced by C<=over> starts with a text or verbatim paragraph,
260 by a dot) to indicate an ordered (numbered) list or simple text for a
266 any text. This usually indicates that something is missing. Note: A
301 =item * alternative text/node '%s' contains non-escaped | or /
305 text and which is a delimiter in case of doubt, one ought to escape
541 when Pod::Checker is used to munge POD code into plain text from within
570 $self->{_index} = []; # text in X<>
674 their occurrence. They consist of plain text, each piece of whitespace is
680 my ($self,$text) = @_;
681 if(defined $text) {
682 $text =~ s/\s+$//s; # strip trailing whitespace
683 $text =~ s/\s+/ /gs; # collapse whitespace
685 push(@{$self->{_nodes}}, $text);
687 $self->{_unique_nodes}->{$text}++ if($text !~ /^\s*$/s);
688 return $text;
698 C<XE<lt>E<gt>>) of the current POD. They consist of plain text, each piece
705 my ($self,$text) = @_;
706 if(defined $text) {
707 $text =~ s/\s+$//s; # strip trailing whitespace
708 $text =~ s/\s+/ /gs; # collapse whitespace
710 push(@{$self->{_index}}, $text);
712 $self->{_unique_nodes}->{$text}++ if($text !~ /^\s*$/s);
713 return $text;
760 # first build the node names from the paragraph text
1021 -msg => "Spurious text after =$cmd"});
1025 ## Check the interior sequences in the command-text
1057 # process a block of some text
1060 ## Check the interior sequences in the command-text
1061 # and return the text
1069 my $text = '';
1072 # regular text chunk
1084 $text .= $_;
1097 $text .= $self->_check_ptree($contents, $line, $file, "$nestlist$cmd");
1131 $text .= chr($val);
1141 $text .= $ENTITIES{$ent};
1147 $text .= "E<$ent>";
1167 # check the link text
1168 $text .= $self->_check_ptree($self->parse_text($link->text(),
1175 $text .= $self->_check_ptree($contents, $line, $file, "$nestlist$cmd");
1201 $text;
1204 # process a block of verbatim text
1219 # process a block of regular text