Contents

Parsedown::blockQuote( $Line )

Description

Source

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

748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
protected function blockQuote($Line)
{
    if (preg_match('/^>[ ]?+(.*+)/', $Line['text'], $matches))
    {
        $Block = array(
            'element' => array(
                'name' => 'blockquote',
                'handler' => array(
                    'function' => 'linesElements',
                    'argument' => (array) $matches[1],
                    'destination' => 'elements',
                )
            ),
        );
 
        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.