Convert special characters to HTML entities with htmlspecialchars.
example: <b>NEAT</b>
{{ example | sanitize }}
<b>NEAT<b>
Double Encoding
You can double encode HTML entities by passing true
as an argument. This is useful for preserving JSON formatting.
{{ example | sanitize(true) }}