ViewHelper Documentation
comment
This ViewHelper prevents rendering of any content inside the tag Note: Contents of the comment will still be parsed thus throwing an Exception if it contains syntax errors. You can put child nodes in CDATA tags to avoid this.
= Examples =
Before
<f:comment>
This is completely hidden.
<f:debug>This does not get parsed</f:debug>
</f:comment>
After
<f:comment><![CDATA[
<f:some.invalid.syntax />
]]
></f:comment>
Arguments
This ViewHelper has no arguments