Contents

Parsedown::inlineUrlTag( $Excerpt )

Description

Source

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

1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
protected function inlineUrlTag($Excerpt)
{
    if (strpos($Excerpt['text'], '>') !== false and preg_match('/^<(\w++:\/{2}[^ >]++)>/i', $Excerpt['text'], $matches))
    {
        $url = $matches[1];
 
        return array(
            'extent' => strlen($matches[0]),
            'element' => array(
                'name' => 'a',
                'text' => $url,
                'attributes' => array(
                    'href' => $url,
                ),
            ),
        );
    }
}

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.