Lines Matching +full:i +full:- +full:plus
60 '+', // plus sign
61 '-', // minus sign (hyphen)
74 $this->references = [];
86 for ($i = $current, $count = count($lines); $i < $count; $i++) {
87 $line = $lines[$i];
90 if (isset($this->context[1]) && $this->context[1] === 'list' && !ctype_alpha($line[0]) && (
91 $this->identifyUl($line, $lines, $i) || $this->identifyOl($line, $lines, $i))) {
95 if ($line === '' || ltrim($line) === '' || $this->identifyHeadline($line, $lines, $i)) {
113 'content' => $this->parseInline(implode("\n", $content)),
115 return [$block, --$i];
126 return str_replace(" \n", $this->html5 ? "<br>\n" : "<br />\n", $text[1]);