Skip to content

Commit a0a9b46

Browse files
committed
Merge pull request #11659 from TomAugspurger/doc-note
DOC: Clarify foramtting
2 parents cda9da8 + ed1df2e commit a0a9b46

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/source/html-styling.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -2525,7 +2525,7 @@
25252525
"source": [
25262526
"Above we used `Styler.apply` to pass in each column one at a time.\n",
25272527
"\n",
2528-
"<p style=\"background-color: #DEDEBE\">*Debugging Tip*: If you're having trouble writing your style function, try just passing it into <code style=\"background-color: #DEDEBE\">df.apply</code>. <code style=\"background-color: #DEDEBE\">Styler.apply</code> uses that internally, so the result should be the same.</p>\n",
2528+
"<p style=\"background-color: #DEDEBE\">*Debugging Tip*: If you're having trouble writing your style function, try just passing it into <code style=\"background-color: #DEDEBE\">DataFrame.apply</code>. Internally, <code style=\"background-color: #DEDEBE\">Styler.apply</code> uses <code style=\"background-color: #DEDEBE\">DataFrame.apply</code> so the result should be the same.</p>\n",
25292529
"\n",
25302530
"What if you wanted to highlight just the maximum value in the entire table?\n",
25312531
"Use `.apply(function, axis=None)` to indicate that your function wants the entire table, not one column or row at a time. Let's try that next.\n",

0 commit comments

Comments
 (0)