public function HamlCompressedRenderer::renderOpenComment in Sassy 7
* Renders the opening of a comment. * Only conditional comments are rendered
Overrides HamlRenderer::renderOpenComment
File
- phamlp/
haml/ renderers/ HamlCompressedRenderer.php, line 23
Class
- HamlCompressedRenderer
- HamlCompressedRenderer class. Output has minimal whitespace. @package PHamlP @subpackage Haml.renderers
Code
public function renderOpenComment($node) {
if ($node->isConditional) {
return parent::renderOpenComment($node);
}
}