mirror of
https://github.com/erusev/parsedown.git
synced 2023-08-10 21:13:06 +03:00
restore support for PHP 5.2
This commit is contained in:
@@ -1370,7 +1370,7 @@ class Parsedown
|
|||||||
{
|
{
|
||||||
if (preg_match('/^\s*\[(.*?)\]/', $remainder, $matches))
|
if (preg_match('/^\s*\[(.*?)\]/', $remainder, $matches))
|
||||||
{
|
{
|
||||||
$definition = $matches[1] ?: $Element['text'];
|
$definition = $matches[1] ? $matches[1] : $Element['text'];
|
||||||
$definition = strtolower($definition);
|
$definition = strtolower($definition);
|
||||||
|
|
||||||
$extent += strlen($matches[0]);
|
$extent += strlen($matches[0]);
|
||||||
|
|||||||
Reference in New Issue
Block a user