HTML - Formating data in dynamic tables

Hi,
I found how to format strings, numbers, … in dynamic tables.

But if I have a text containing HTML code it will show the HTML tags in the cell.
I discovered how to strip the tags

, but I really want to show the HTML-formatted text in the cell.

For example:
This is a <b>bold</b> text.
is shown with the < b > tag.

But I want to display:
This is a bold text.

Any hint, how to realise this?

Thank you!

Hello,
You need to use dynamic attributes > inner HTML option.
In the code it will produce the following: <td dmx-html="your_value"></td>

Thank you so much for the fast answer!