]>
git.immae.eu Git - github/wallabag/wallabag.git/blob - vendor/twig/twig/lib/Twig/Node/Spaceless.php
4 * This file is part of Twig.
6 * (c) 2010 Fabien Potencier
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
13 * Represents a spaceless node.
15 * It removes spaces between HTML tags.
17 * @author Fabien Potencier <fabien@symfony.com>
19 class Twig_Node_Spaceless
extends Twig_Node
21 public function __construct(Twig_NodeInterface
$body, $lineno, $tag = 'spaceless')
23 parent
::__construct(array('body' => $body), array(), $lineno, $tag);
27 * Compiles the node to PHP.
29 * @param Twig_Compiler A Twig_Compiler instance
31 public function compile(Twig_Compiler
$compiler)
35 ->write("ob_start();\n")
36 ->subcompile($this->getNode('body'))
37 ->write("echo trim(preg_replace('/>\s+</', '><', ob_get_clean()));\n")