-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
ENH: styler.html.mathjax
option
#43283
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
# Conflicts: # doc/source/user_guide/options.rst # doc/source/whatsnew/v1.4.0.rst # pandas/core/config_init.py
@@ -250,8 +250,7 @@ def _translate(self, sparse_index: bool, sparse_cols: bool, blank: str = " | |||
d.update({k: map}) | |||
|
|||
table_attr = self.table_attributes | |||
use_mathjax = get_option("display.html.use_mathjax") | |||
if not use_mathjax: | |||
if not get_option("styler.html.mathjax"): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
so this is technically a change in the option name? (its ok to merge this, just mention in the whatsnew)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done. I will edit the whats new before 1.4.0 release.
can you rebase |
# Conflicts: # doc/source/whatsnew/v1.4.0.rst # pandas/core/config_init.py
This pandas option is added to allow the
Styler
options to be independent from the others. See #41395options.rst
will update styler user guide as a follow on when all options PRs merged.