---
title: "Comment ViewHelper <f:comment>"
manual: "Fluid ViewHelper Reference"
version: "main"
permalink: "https://docs.typo3.org/permalink/t3viewhelper:typo3fluid-fluid-comment@main"
source: "Global/Comment.rst"
modified: "2026-09-15T08:11:10+00:00"
---

# Comment ViewHelper `<f:comment>`

This ViewHelper prevents rendering of any content inside the tag.

Contents of the comment will **not be parsed** thus it can be used to
comment out invalid Fluid syntax or non-existent ViewHelpers during
development.

Using this ViewHelper won't have a notable effect on performance,
especially once the template is parsed. However, it can lead to reduced
readability. You can use layouts and partials to split a large template
into smaller parts. Using self-descriptive names for the partials can
make comments redundant.

## Examples

### Commenting out fluid code

```
Before
<f:comment>
    This is completely hidden.
    <f:debug>This does not get rendered</f:debug>
</f:comment>
After

```

Output:

```
Before
After
```

Go to the source code of this ViewHelper: [CommentViewHelper.php (GitHub)](https://github.com/TYPO3/Fluid/blob/main/src/ViewHelpers/CommentViewHelper.php).
