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
"""Provides an interactive HTML export of a Table.
100
90
@@ -138,31 +128,26 @@ def css_urls(self):
138
128
returnconf.css_urls
139
129
140
130
def_jstable_file(self):
141
-
# downloaded from http://datatables.net/download/build/
"""Render the table in HTML and show it in the IPython notebook.
868
+
869
+
Parameters
870
+
----------
871
+
tableid : str or `None`
872
+
An html ID tag for the table. Default is ``table{id}-XXX``, where
873
+
id is the unique integer id of the table object, id(self), and XXX
874
+
is a random number to avoid conflicts when printing the same table
875
+
multiple times.
876
+
table_class : str or `None`
877
+
A string with a list of HTML classes used to style the table.
878
+
Default is "table table-striped table-bordered table-condensed",
879
+
using Bootstrap which is available in the notebook. See `this page
880
+
<http://getbootstrap.com/css/#tables>`_ for the list of classes.
881
+
css : string
882
+
A valid CSS string declaring the formatting for the table. Default
0 commit comments