Description | The |
Syntax | ESCAPE_HTML( |
Output | text |
Variables
text
: The input text string that you want to escape HTML special characters from.
Example
ESCAPE_HTML(`text`)
ID | Description | ESCAPE_HTML |
1 | This is <strong>important</strong>. | This is <strong>important</strong>. |
2 | <a href="#">Click here</a> | <a href="#">Click here</a> |
3 | <div>Hello</div> | <div>Hello</div> |