Lines Matching refs:item

45 =item B<-warnings> =E<gt> I<val>
64 =item *
69 =item *
74 =item *
76 Check for proper nesting and balancing of C<=over>, C<=item> and C<=back>.
78 =item *
83 =item *
87 =item *
92 =item *
106 =item * empty =headn
111 =item * =over on line I<N> without closing =back
116 =item * =item without previous =over
118 =item * =back without previous =over
120 An C<=item> or C<=back> command has been found outside a
123 =item * No argument for =begin
128 =item * =end without =begin
132 =item * Nested =begin's
138 =item * =for without formatter specification
142 =item * unresolved internal link I<NAME>
148 =item * Unknown command "I<CMD>"
151 C<=head3>, C<=head4>, C<=over>, C<=item>, C<=back>, C<=begin>, C<=end>,
154 =item * Unknown interior-sequence "I<SEQ>"
161 =item * nested commands I<CMD>E<lt>...I<CMD>E<lt>...E<gt>...E<gt>
166 =item * garbled entity I<STRING>
170 =item * Entity number out of range
174 =item * malformed link LE<lt>E<gt>
179 =item * nonempty ZE<lt>E<gt>
183 =item * empty XE<lt>E<gt>
187 =item * Spurious text after =pod / =cut
191 =item * Spurious character(s) after =back
203 =item * multiple occurrence of link target I<name>
205 The POD file has some C<=item> and/or C<=head> commands that have
208 =item * line containing nothing but whitespace in paragraph
216 =item * file does not start with =head
223 =item * previous =item has no contents
225 There is a list C<=item> right above the flagged line that has no
228 =item * preceding non-item paragraph(s)
231 but continues with C<=item>s. Move the non-item paragraph out of the
234 =item * =item type mismatch (I<one> vs. I<two>)
236 A list started with e.g. a bulletted C<=item> and continued with a
238 type of the I<first> C<=item> determines the type of the list.
240 =item * I<N> unescaped C<E<lt>E<gt>> in paragraph
247 =item * Unknown entity
252 =item * No items in =over
256 =item * No argument for =item
258 C<=item> without any parameters is deprecated. It should either be followed
263 =item * empty section in previous paragraph
269 =item * Verbatim paragraph in NAME section
275 =item * =headI<n> without preceding higher level
288 =item * ignoring leading/trailing whitespace in link
293 =item * (section) in '$page' deprecated
301 =item * alternative text/node '%s' contains non-escaped | or /
325 for hyperlinks (C<=headX>, C<=item>) and index entries (C<XE<lt>E<gt>>).
362 'item' => 1,
529 =item C<Pod::Checker-E<gt>new( %options )>
569 $self->{_nodes} = []; # stack for =head/=item nodes
579 =item C<$checker-E<gt>poderror( @args )>
581 =item C<$checker-E<gt>poderror( {%opts}, @args )>
632 =item C<$checker-E<gt>num_errors()>
644 =item C<$checker-E<gt>num_warnings()>
656 =item C<$checker-E<gt>name()>
670 =item C<$checker-E<gt>node()>
673 and C<=item>) of the current POD. The nodes are returned in the order of
695 =item C<$checker-E<gt>idx()>
720 =item C<$checker-E<gt>hyperlink()>
723 C<LE<lt>E<gt>>) of the current POD. They consist of a 2-item array: line
789 # =headX, =item and X<...>
832 elsif($cmd eq 'item') {
837 -msg => "=item without previous =over" });
842 # check whether the previous item had some contents
847 -msg => "previous =item has no contents" });
852 -msg => "preceding non-item paragraph(s)" });
878 -msg => "=item type mismatch ('$first' vs. '$type')"});
880 else { # first item
887 -msg => "No argument for =item" });
891 # add this item
892 $list->item($arg);
914 if(!$list->item() && $self->{-warnings}) {
1051 -msg => "previous =item has no contents" });
1245 if(@{$self->{_list_stack}} && !$self->{_list_stack}->[0]->item()) {