Contents

Parsedown::inlineSpecialCharacter( $Excerpt )

Description

Source

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

1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
protected function inlineSpecialCharacter($Excerpt)
{
    if (substr($Excerpt['text'], 1, 1) !== ' ' and strpos($Excerpt['text'], ';') !== false
        and preg_match('/^&(#?+[0-9a-zA-Z]++);/', $Excerpt['text'], $matches)
    ) {
        return array(
            'element' => array('rawHtml' => '&' . $matches[1] . ';'),
            'extent' => strlen($matches[0]),
        );
    }
 
    return;
}

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.