This module provides Twig filters to remove HTML comments from your Drupal content. It offers a filter to remove comments for rendering as markup and another to remove them when outputting as a string.
Provides a Twig filter that removes HTML comments.
Requirements
- Drupal 10 or 11
- PHP 7.2+
Usage:
{# Print result as markup render array. #}
{{ content.field_my_field|render|remove_html_comments }}
{# Print result as string. #}
{{ content.field_my_field|render|remove_html_comments_as_string }}