Contents

Parsedown::blockMarkup( $Line )

Description

Source

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

829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
protected function blockMarkup($Line)
{
    if ($this->markupEscaped or $this->safeMode)
    {
        return;
    }
 
    if (preg_match('/^<[\/]?+(\w*)(?:[ ]*+'.$this->regexHtmlAttribute.')*+[ ]*+(\/)?>/', $Line['text'], $matches))
    {
        $element = strtolower($matches[1]);
 
        if (in_array($element, $this->textLevelElements))
        {
            return;
        }
 
        $Block = array(
            'name' => $matches[1],
            'element' => array(
                'rawHtml' => $Line['text'],
                'autobreak' => true,
            ),
        );
 
        return $Block;
    }
}

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.