We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c068e21 commit 41521d4Copy full SHA for 41521d4
pandas/io/formats/style_render.py
@@ -366,9 +366,11 @@ def _translate(
366
if not get_option("styler.html.mathjax"):
367
table_attr = table_attr or ""
368
if 'class="' in table_attr:
369
- table_attr = table_attr.replace('class="', 'class="tex2jax_ignore ')
+ table_attr = table_attr.replace(
370
+ 'class="', 'class="tex2jax_ignore mathjax_ignore"'
371
+ )
372
else:
- table_attr += ' class="tex2jax_ignore"'
373
+ table_attr += ' class="tex2jax_ignore mathjax_ignore"'
374
d.update({"table_attributes": table_attr})
375
376
if self.tooltips:
0 commit comments