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

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

protected runBasicBlockGamut ( $text )
    protected function runBasicBlockGamut($text)
    {
        #
        # Run block gamut tranformations, without hashing HTML blocks. This is
        # useful when HTML blocks are known to be already hashed, like in the first
        # whole-document pass.
        #
        foreach ($this->block_gamut as $method => $priority) {
            $text = $this->{$method}($text);
        }
        # Finally form paragraph and restore hashed blocks.
        $text = $this->formParagraphs($text);
        return $text;
    }