cebe\markdown\inline\UrlLinkTrait::renderAutoUrl PHP Method

renderAutoUrl() protected method

protected renderAutoUrl ( $block )
    protected function renderAutoUrl($block)
    {
        $href = htmlspecialchars($block[1], ENT_COMPAT | ENT_HTML401, 'UTF-8');
        $decodedUrl = urldecode($block[1]);
        $secureUrlText = preg_match('//u', $decodedUrl) ? $decodedUrl : $block[1];
        $text = htmlspecialchars($secureUrlText, ENT_NOQUOTES | ENT_SUBSTITUTE, 'UTF-8');
        return "<a href=\"{$href}\">{$text}</a>";
    }