Parsedown::textElements( $text )

Description

Source

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

37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
protected function textElements($text)
{
    # make sure no definitions are set
    $this->DefinitionData = array();
 
    # standardize line breaks
    $text = str_replace(array("\r\n", "\r"), "\n", $text);
 
    # remove surrounding line breaks
    $text = trim($text, "\n");
 
    # split text into lines
    $lines = explode("\n", $text);
 
    # iterate through lines to identify blocks
    return $this->linesElements($lines);
}

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.