Contents

Parsedown::blockQuoteContinue( $Line,  $Block )

Description

Source

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

767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
protected function blockQuoteContinue($Line, array $Block)
{
    if (isset($Block['interrupted']))
    {
        return;
    }
 
    if ($Line['text'][0] === '>' and preg_match('/^>[ ]?+(.*+)/', $Line['text'], $matches))
    {
        $Block['element']['handler']['argument'] []= $matches[1];
 
        return $Block;
    }
 
    if ( ! isset($Block['interrupted']))
    {
        $Block['element']['handler']['argument'] []= $Line['text'];
 
        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.