Lines Matching +full:g +full:- +full:plus
26 * @var boolean whether to interpret newlines as `<br />`-tags.
44 '+', // plus sign
45 '-', // minus sign (hyphen)
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)) {
82 // e.g. <img src="file.jpg"
95 'content' => $this->parseInline(implode("\n", $content)),
97 return [$block, --$i];
107 if ($this->enableNewlines) {
108 $br = $this->html5 ? "<br>\n" : "<br />\n";