Lines Matching refs:LIST
81 # * Changed list references to scalars where appropriate. (@foo[0] -> $foo[0])
82 # * Added untabify() to homogenize leading indentation for list
94 # list was ended "</UL>" was *always* used!
121 # * Doesn't break short lines if they are the first line in a list
123 # continuation of the list item, but I haven't dealt with this yet.
231 # level of a list
244 $LIST = 1;
515 LIST)))
595 $list[$listnum] = $OL;
598 $list[$listnum] = $UL;
602 $line_action |= $LIST;
603 $mode |= $LIST;
613 if($list[$listnum-1] == $UL)
616 } elsif($list[$listnum-1] == $OL)
621 print STDERR "Encountered list of unknown type\n";
625 $mode ^= ($LIST & $mode) if (!$listnum);
630 $line =~ s/^\s*[-=o\*]\s*/$list_indent<LI> / if $list[$listnum-1] == $UL;
631 $line =~ s/^\s*(\d+|[a-zA-Z]).\s*/$list_indent<LI> / if $list[$listnum-1
633 $line_action |= $LIST;
645 return if !&is_blank($prev); # inside a list item
647 # This ain't no list. We'll want to end all of them.
648 return if !($mode & $LIST); # This just speeds up the inevitable
652 # Maybe we're going back up to a previous list
664 &continuelist($prefix, $number, $rawprefix) if ($mode & $LIST);
896 &preformat if (!($line_action & ($HEADER | $LIST | $MAILHEADER)) &&
897 !($mode & ($LIST | $PRE)) &&
902 !($mode & ($LIST | $PRE)) && # paragraphs in lists
932 &endlist($listnum) if ($mode & $LIST); # End all lists