Contents

Parsedown::inlineUrl( $Excerpt )

Description

Source

File: bp-help/vendors/parsedown/Parsedown.php

1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
protected function inlineUrl($Excerpt)
{
    if ($this->urlsLinked !== true or ! isset($Excerpt['text'][2]) or $Excerpt['text'][2] !== '/')
    {
        return;
    }
 
    if (strpos($Excerpt['context'], 'http') !== false
        and preg_match('/\bhttps?+:[\/]{2}[^\s<]+\b\/*+/ui', $Excerpt['context'], $matches, PREG_OFFSET_CAPTURE)
    ) {
        $url = $matches[0][0];
 
        $Inline = array(
            'extent' => strlen($matches[0][0]),
            'position' => $matches[0][1],
            'element' => array(
                'name' => 'a',
                'text' => $url,
                'attributes' => array(
                    'href' => $url,
                ),
            ),
        );
 
        return $Inline;
    }
}

Questions?

We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.