Lines Matching +refs:text +refs:line
50 protected function replaceEscape($text) argument
56 return strtr($text, $strtr);
66 list($text, $url, $title, $offset, $key) = $parts;
70 'text' => $this->parseInline($text),
97 list($text, $url, $title, $offset, $key) = $parts;
102 'text' => $text,
125 $text = $textMatches[1];
139 $text,
148 $key = strtolower($text);
153 $text,
168 protected function parseLt($text) argument
170 if (strpos($text, '>') !== false) {
172 if (preg_match('/^<([^\s>]*?@[^\s]*?\.\w+?)>/', $text, $matches)) {
178 } elseif (preg_match('/^<([a-z]{3,}:\/\/[^\s]+?)>/', $text, $matches)) {
188 return $this->parseInlineHtml($text);
205 $text = htmlspecialchars($secureUrlText, ENT_NOQUOTES | ENT_SUBSTITUTE, 'UTF-8');
206 return "<a href=\"$url\">$text</a>";
255 protected function identifyReference($line) argument
257 … isset($line[0]) && ($line[0] === ' ' || $line[0] === '[') && preg_match('/^ {0,3}\[[^\[](.*?)\]:\…
285 abstract protected function parseInline($text); argument