basictabler
basictabler copied to clipboard
Treating cells as HTML elements
Hi, I'm making a table where one column includes URL adresses. I'm displaying the table inside a Shiny app.
Can I parse cell contents of that column (or specific cells) as valid HTML?
E.g.
'<a href="https://www.google.com/">https://www.google.com/</a>' should display as a link to Google.
Also, by using the $getHtml() method, I see that the cell contents look like this:
<a href="https://www.google.com/">https://www.google.com/</a>
Basically the < and > symbols are being interpreted literally, perhaps that is preventing the conversion to actual HTML?