org\parser\driver\Markdown::runBlockGamut PHP Метод

runBlockGamut() защищенный Метод

protected runBlockGamut ( $text )
    protected function runBlockGamut($text)
    {
        #
        # Run block gamut tranformations.
        #
        # We need to escape raw HTML in Markdown source before doing anything
        # else. This need to be done for each block, and not only at the
        # begining in the Markdown function since hashed blocks can be part of
        # list items and could have been indented. Indented blocks would have
        # been seen as a code block in a previous pass of hashHTMLBlocks.
        $text = $this->hashHTMLBlocks($text);
        return $this->runBasicBlockGamut($text);
    }