Hi @NextLevel
Thank you for posting your question in the community.
While I have not specifically run into this challenge I wanted to chime in and see if I could help point you in the right direction to get the HTML tags removed.
Klaviyo uses django web framework. When I create custom code to format shopify data I reference the Django documentation frequently.
https://docs.djangoproject.com/en/5.0/ref/templates/builtins/
In your case, there is a condition called Striptags which is supposed to remove HTML tags from a block of text.
I am not an expert in Django, but play around with it, I think if you add the following to your code, it could do the trick.
{{ value|striptags }}
{% catalog event.VariantId integration='shopify' %}{{ catalog_item.description|striptags }}{% endcatalog %}
Please let me know if that does the trick!
@In the Inbox