Lines Matching +refs:text +refs:line
66 $line = $lines[$i];
67 if ($line === ''
68 || ltrim($line) === ''
69 || !ctype_alpha($line[0]) && (
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)) {
85 $content[] = $line;
90 $content[] = $line;
105 protected function renderText($text) argument
109 return strtr($text[1], [" \n" => $br, "\n" => $br]);
111 return parent::renderText($text);