Attention
TYPO3 v11 has reached end-of-life as of October 31th 2024 and is no longer being maintained. Use the version switcher on the top left of this page to select documentation for a supported version of TYPO3.
Need more time before upgrading? You can purchase Extended Long Term Support (ELTS) for TYPO3 v11 here: TYPO3 ELTS.
Spaceless ViewHelper <f:spaceless>
Space Removal ViewHelper
Removes redundant spaces between HTML tags while preserving the whitespace that may be inside HTML tags. Trims the final result before output.
Heavily inspired by Twig's corresponding node type.
Usage of f:spaceless
<f:spaceless>
<div>
<div>
<div>text
text</div>
</div>
</div>
</f:spaceless>
Copied!
Output:
<div><div><div>text
text</div></div></div>
Copied!
Source code
Go to the source code of this ViewHelper: SpacelessViewHelper.php (GitHub).
Note
<f:
has no arguments.