Lines Matching full:lines
27 * This feature is useful for comments where newlines are often meant to be real new lines.
57 * Consume lines for a paragraph
61 protected function consumeParagraph($lines, $current) argument
65 for ($i = $current, $count = count($lines); $i < $count; $i++) {
66 $line = $lines[$i];
70 $this->identifyQuote($line, $lines, $i) ||
71 $this->identifyFencedCode($line, $lines, $i) ||
72 $this->identifyUl($line, $lines, $i) ||
73 $this->identifyOl($line, $lines, $i) ||
74 $this->identifyHr($line, $lines, $i)
76 || $this->identifyHeadline($line, $lines, $i))
79 } elseif ($this->identifyCode($line, $lines, $i)) {