add url parsing

This commit is contained in:
Dennis Eichhorn 2023-09-21 22:26:45 +00:00
parent acf4ea21f3
commit 118789e0f8

View File

@ -3161,7 +3161,7 @@ class Markdown
$id = strtolower($matches[1]);
$Data = array(
'url' => $matches[2],
'url' => UriFactory::build($matches[2]),
'title' => isset($matches[3]) ? $matches[3] : null,
);