Lines Matching refs:Excerpt
1066 $Excerpt = array('text' => $excerpt, 'context' => $text);
1077 $Inline = $this->{'inline'.$inlineType}($Excerpt);
1138 protected function inlineCode($Excerpt) argument
1140 $marker = $Excerpt['text'][0];
1142 …if (preg_match('/^('.$marker.'+)[ ]*(.+?)[ ]*(?<!'.$marker.')\1(?!'.$marker.')/s', $Excerpt['text'…
1157 protected function inlineEmailTag($Excerpt) argument
1159 …if (strpos($Excerpt['text'], '>') !== false and preg_match('/^<((mailto:)?\S+?@\S+?)>/i', $Excerpt…
1181 protected function inlineEmphasis($Excerpt) argument
1183 if ( ! isset($Excerpt['text'][1]))
1188 $marker = $Excerpt['text'][0];
1190 …if ($Excerpt['text'][1] === $marker and preg_match($this->StrongRegex[$marker], $Excerpt['text'], …
1194 elseif (preg_match($this->EmRegex[$marker], $Excerpt['text'], $matches))
1213 protected function inlineEscapeSequence($Excerpt) argument
1215 if (isset($Excerpt['text'][1]) and in_array($Excerpt['text'][1], $this->specialCharacters))
1218 'markup' => $Excerpt['text'][1],
1224 protected function inlineImage($Excerpt) argument
1226 if ( ! isset($Excerpt['text'][1]) or $Excerpt['text'][1] !== '[')
1231 $Excerpt['text']= substr($Excerpt['text'], 1);
1233 $Link = $this->inlineLink($Excerpt);
1258 protected function inlineLink($Excerpt) argument
1273 $remainder = $Excerpt['text'];
1330 protected function inlineMarkup($Excerpt) argument
1332 if ($this->markupEscaped or $this->safeMode or strpos($Excerpt['text'], '>') === false)
1337 …if ($Excerpt['text'][1] === '/' and preg_match('/^<\/\w[\w-]*[ ]*>/s', $Excerpt['text'], $matches))
1345 …if ($Excerpt['text'][1] === '!' and preg_match('/^<!---?[^>-](?:-?[^-])*-->/s', $Excerpt['text'], …
1353 …if ($Excerpt['text'][1] !== ' ' and preg_match('/^<\w[\w-]*(?:[ ]*'.$this->regexHtmlAttribute.')*[…
1362 protected function inlineSpecialCharacter($Excerpt) argument
1364 if ($Excerpt['text'][0] === '&' and ! preg_match('/^&#?\w+;/', $Excerpt['text']))
1374 if (isset($SpecialCharacter[$Excerpt['text'][0]]))
1377 'markup' => '&'.$SpecialCharacter[$Excerpt['text'][0]].';',
1383 protected function inlineStrikethrough($Excerpt) argument
1385 if ( ! isset($Excerpt['text'][1]))
1390 …if ($Excerpt['text'][1] === '~' and preg_match('/^~~(?=\S)(.+?)(?<=\S)~~/', $Excerpt['text'], $mat…
1403 protected function inlineUrl($Excerpt) argument
1405 … if ($this->urlsLinked !== true or ! isset($Excerpt['text'][2]) or $Excerpt['text'][2] !== '/')
1410 …if (preg_match('/\bhttps?:[\/]{2}[^\s<]+\b\/*/ui', $Excerpt['context'], $matches, PREG_OFFSET_CAPT…
1430 protected function inlineUrlTag($Excerpt) argument
1432 …if (strpos($Excerpt['text'], '>') !== false and preg_match('/^<(\w+:\/{2}[^ >]+)>/i', $Excerpt['te…