public function HamlDoctypeNode::render in Sassy 7
* Render this node. *
Return value
string the rendered node
Overrides HamlNode::render
File
- phamlp/
haml/ tree/ HamlDoctypeNode.php, line 24
Class
- HamlDoctypeNode
- HamlDoctypeNode class. Represents a Doctype. Doctypes are always rendered on a single line with a newline. @package PHamlP @subpackage Haml.tree
Code
public function render() {
return $this
->debug($this->content . "\n");
}