function condition(array $attributes, array $children) : string { return sprintf('<!--[if %s]>%s<![endif]-->', $children[0], renderChildren(\array_slice($children, 1))); }
function fake(array $attributes, $children) : string { return sprintf('<fake%s>%s</fake>', renderAttributes($attributes), renderChildren($children)); }
function comment(array $attributes, array $children) : string { return \sprintf('<!-- %s -->', renderChildren($children)); }