_filter_html_escape($text)
Escapes all HTML tags, so they will be visible instead of being effective.
Related topics
- Standard filters
- Filters implemented by the Filter module.
File
- core/modules/filter/filter.module, line 758
- Framework for handling the filtering of content.
Code
1 2 3 | function _filter_html_escape( $text ) { return trim(Html::escape( $text )); } |
Please login to continue.