f:format.htmlentitiesDecode¶
Applies html_entity_decode() to a value. http://www.php.net/html_entity_decode
Properties¶
value¶
- Variable type
- String
- Description
- String to format.
- Default value
- NULL
- Mandatory
- No
keepQuotes¶
- Variable type
- Boolean
- Description
- If TRUE, single and double quotes won't be replaced (sets ENT_NOQUOTES flag).
- Default value
- FALSE
- Mandatory
- No
encoding¶
- Variable type
- String
- Description
- Generally TYPO3 uses the UTF-8 charset. But if you need an other charset for a special case, you can enter it here.
- Default value
- NULL
- Mandatory
- No
Example¶
<p><f:format.htmlentitiesDecode>Müller & Breuer</f:format.htmlentitiesDecode>
In the HTML source code you can see a clean: "Müller & Breuer".