Parsedown::paragraph( $Line )

Description

Source

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

1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
protected function paragraph($Line)
{
    return array(
        'type' => 'Paragraph',
        'element' => array(
            'name' => 'p',
            'handler' => array(
                'function' => 'lineElements',
                'argument' => $Line['text'],
                'destination' => 'elements',
            ),
        ),
    );
}

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.