Remote dataset strips html tags

In my remote json I have a field with html, but when xibo fill the dataset it strips all html tags.
How can I avoid this?
Thanks

Umh, I think it’s not possible.
I have solved the problem by adding an ‘Html’ type (id 6) in the datatype table and the following code in DataSetFactory.php (approximately after line 654):

                    // HTML. Warning! No sanitization!
                    case 6:
                        $result[$column->heading] = $value[1];
                        break;