mirror of
https://github.com/erusev/parsedown.git
synced 2023-08-10 21:13:06 +03:00
Add support for recursive handlers
This commit is contained in:
parent
9f1f5de387
commit
e4d6c8f911
@ -1560,6 +1560,11 @@ class Parsedown
|
|||||||
}
|
}
|
||||||
|
|
||||||
$Element[$destination] = $this->{$function}($argument, $Element['nonNestables']);
|
$Element[$destination] = $this->{$function}($argument, $Element['nonNestables']);
|
||||||
|
|
||||||
|
if ($destination === 'handler')
|
||||||
|
{
|
||||||
|
$Element = $this->handle($Element);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
unset($Element['handler']);
|
unset($Element['handler']);
|
||||||
|
Loading…
Reference in New Issue
Block a user