I have a column which has a html link in it.
json_encode('<a href="url.com">'.$row['name'] . '</a>')
I want this exported to Excel when the user uses the export button.
I have tested and the HTML is not being included in the cell during export.
If I use stripHtml: false
- it adds the html link as text in the cell
Is this possible? Do I need to do something special?