Function Name:
Strip Tags
Purpose:
The Strip Tags emulates the PHP strip_tags function behavior in Java. This function is useful for removing HTML tags from text.
Configuration:
1. Enter a Display label for the node. This will be helpful with identifying the node when viewing your Entity Pipeline.
2. Enter a Description that will explain the criteria configured.
3. Enter the Allowed Tags that will remain in the text after the function runs. Leaving this attribute blank will allow the function to remove all tags from the text.
4. The Data Token option allows you to dynamically set the Allowed Tags value from an attribute.
Example:
If the function receives the following as input text and Allow Tags is set to <a>,
<a>syncari</a><button>rocks</button>It will output the following,
<a>syncari</a>rocks