How can I include HTML in the table produced by a DataFrame in an IPython notebook?
For example, I'd like to be able to do something like:
pd.DataFrame({
"text": ["Hello <strong>world</strong>"],
})
To produce a table something like:
<table>
<tr><th></th><th>text</th></tr>
<tr><th>0</th><td>Hello <strong>world</strong></tr>
</table>