Skip to main content
Removes the HTML tags from a text value and keeps only the readable content. Use this when a source system stores a description with markup but the target system expects plain text. You can optionally keep a few tags, for example to preserve basic formatting such as bold or links.

Fields

Sample data

With Exclude tags left empty, every tag is removed and only the text remains.
FieldValue
Exclude tags(empty)
Input:
{ "description": "<p>Soft <strong>wool</strong> scarf</p>" }
Output:
{ "description": "Soft wool scarf" }
With Exclude tags set to <strong>, the listed tags are kept in place while the rest are removed.
FieldValue
Exclude tags<strong>
Input:
{ "description": "<p>Soft <strong>wool</strong> scarf</p>" }
Output:
{ "description": "Soft <strong>wool</strong> scarf" }