You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For example, if I have a list of Foo, and repr(foo) is <Foo at 0x49199d0>, that's what I should see in the table cell. Right now the cell gets that literally and it's interpreted as an XML tag, which isn't so great.
Objects that have specific HTML repr methods (_repr_html_ for ipython-notebook) should use those instead of being escaped.
For example, if I have a list of Foo, and repr(foo) is
<Foo at 0x49199d0>
, that's what I should see in the table cell. Right now the cell gets that literally and it's interpreted as an XML tag, which isn't so great.Objects that have specific HTML repr methods (
_repr_html_
for ipython-notebook) should use those instead of being escaped.MarkupSafe may also be of interest here.
The text was updated successfully, but these errors were encountered: