Task
Product descriptions in CSV or XLSX contain HTML markup such as <p>, <br>, and <strong>. The final file needs plain text.
Short answer
Open the description column settings and add the Remove HTML tags transformation. No other rules are needed for this case.
How to Do It in Eofferix
- Open the settings of the
descriptioncolumn.
The animation shows the settings icon under the description column. - In Transformations, add Remove HTML tags.

The Remove HTML tags action is selected. No other rules are needed for this case. - Save the settings and export the cleaned description.
What matters for the result
Remove HTML tagsremoves markup, but entities such as should be handled with a separate substring replacement.- If
<br>should become a space or line break, replace it before removing tags. - Test a description with
p,strong,a,br: tags should disappear while text remains readable.
Before / After
Before
source data| sku | description |
|---|---|
| SKU-100 | <p>Office <strong>chair</strong></p> |
After
result| sku | description |
|---|---|
| SKU-100 | Office chair |