mirror of
https://github.com/erusev/parsedown.git
synced 2025-01-17 12:48:28 +01: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
|
# 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)
|
foreach ($matches as $matches)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user