Contents

Parsedown::inlineMarkup( $Excerpt )

Description

Source

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

1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
protected function inlineMarkup($Excerpt)
{
    if ($this->markupEscaped or $this->safeMode or strpos($Excerpt['text'], '>') === false)
    {
        return;
    }
 
    if ($Excerpt['text'][1] === '/' and preg_match('/^<\/\w[\w-]*+[ ]*+>/s', $Excerpt['text'], $matches))
    {
        return array(
            'element' => array('rawHtml' => $matches[0]),
            'extent' => strlen($matches[0]),
        );
    }
 
    if ($Excerpt['text'][1] === '!' and preg_match('/^<!---?[^>-](?:-?+[^-])*-->/s', $Excerpt['text'], $matches))
    {
        return array(
            'element' => array('rawHtml' => $matches[0]),
            'extent' => strlen($matches[0]),
        );
    }
 
    if ($Excerpt['text'][1] !== ' ' and preg_match('/^<\w[\w-]*+(?:[ ]*+'.$this->regexHtmlAttribute.')*+[ ]*+\/?>/s', $Excerpt['text'], $matches))
    {
        return array(
            'element' => array('rawHtml' => $matches[0]),
            'extent' => strlen($matches[0]),
        );
    }
}

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.