check string not converted before to link by "/" prefix

This commit is contained in:
ghost 2023-12-11 08:46:36 +02:00
parent 3fb22ad7aa
commit 3990d570e1

View File

@ -185,8 +185,9 @@ class AppExtension extends AbstractExtension
string $text
): string
{
// check string not converted before to link by "/" prefix
return preg_replace(
'~(N[A-z0-9]{33})~i',
'~[^/](N[A-z0-9]{33})~i',
'[$1]($1#latest)',
$text
);