Closed kprovance closed 6 years ago
Have you got a code example that is being picked up?
It's part of a larger library that parses MD. Here is the function.
protected function blockReference($Line)
{
if (strpos($Line['text'], ']') !== false
and preg_match('/^\[(.+?)\]:[ ]*+<?(\S+?)>?(?:[ ]+["\'(](.+)["\')])?[ ]*+$/', $Line['text'], $matches)
) {
$id = strtolower($matches[1]);
$Data = array(
'url' => $matches[2],
'title' => isset($matches[3]) ? $matches[3] : null,
);
$this->DefinitionData['Reference'][$id] = $Data;
$Block = array(
'element' => array(),
);
return $Block;
}
}
066a2b5b5efd9c53f90c40465bc369b547a25cdd
Otto never fixed this either. So...
is the offending line