Devise\Pages\Interpreter\Modifiers\CreatePristineSection::parseNode PHP Метод

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

Parses the html node
protected parseNode ( string $html ) : string
$html string
Результат string
    protected function parseNode($html)
    {
        $tags = $this->DeviseParser->getDeviseTags($html);
        foreach ($tags as $tag) {
            $html = str_replace($tag->value, '', $html);
        }
        return $html;
    }