@@ -1295,16 +1295,16 @@ def to_html(self, buf=None, columns=None, col_space=None, colSpace=None,
12951295 justify = None , force_unicode = None , bold_rows = True ,
12961296 classes = None , escape = True ):
12971297 """
1298- to_html-specific options
1298+ Render a DataFrame as an HTML table.
1299+
1300+ `to_html`-specific options:
12991301
13001302 bold_rows : boolean, default True
13011303 Make the row labels bold in the output
13021304 classes : str or list or tuple, default None
13031305 CSS class(es) to apply to the resulting html table
13041306 escape : boolean, default True
13051307 Convert the characters <, >, and & to HTML-safe sequences.
1306-
1307- Render a DataFrame as an HTML table.
13081308 """
13091309
13101310 if force_unicode is not None : # pragma: no cover
@@ -1337,12 +1337,13 @@ def to_latex(self, buf=None, columns=None, col_space=None, colSpace=None,
13371337 float_format = None , sparsify = None , index_names = True ,
13381338 bold_rows = True , force_unicode = None ):
13391339 """
1340- to_latex-specific options
1341- bold_rows : boolean, default True
1342- Make the row labels bold in the output
1343-
13441340 Render a DataFrame to a tabular environment table.
13451341 You can splice this into a LaTeX document.
1342+
1343+ `to_latex`-specific options:
1344+
1345+ bold_rows : boolean, default True
1346+ Make the row labels bold in the output
13461347 """
13471348
13481349 if force_unicode is not None : # pragma: no cover
0 commit comments