mirror of
https://github.com/erusev/parsedown.git
synced 2023-08-10 21:13:06 +03:00
link definitions should not tolerate space between ]
and (
This commit is contained in:
parent
0a0a126827
commit
7b091b8915
@ -557,7 +557,7 @@ class Parsedown
|
||||
|
||||
# Inline Link / Image
|
||||
|
||||
if (strpos($text, ']') !== FALSE and preg_match_all('/(!?)\[(.*?)\][ ]?\((.*?)\)/', $text, $matches, PREG_SET_ORDER)) # inline
|
||||
if (strpos($text, '](') !== FALSE and preg_match_all('/(!?)\[(.*?)\]\((.*?)\)/', $text, $matches, PREG_SET_ORDER)) # inline
|
||||
{
|
||||
foreach ($matches as $matches)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user