Contents

Parsedown::blockSetextHeader( $Line,  $Block = null )

Description

Source

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

811
812
813
814
815
816
817
818
819
820
821
822
823
824
protected function blockSetextHeader($Line, array $Block = null)
{
    if ( ! isset($Block) or $Block['type'] !== 'Paragraph' or isset($Block['interrupted']))
    {
        return;
    }
 
    if ($Line['indent'] < 4 and chop(chop($Line['text'], ' '), $Line['text'][0]) === '')
    {
        $Block['element']['name'] = $Line['text'][0] === '=' ? 'h1' : 'h2';
 
        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.