-
Code cells that can be executed (e.g. Python or R) are rendered with a gray background. Other code cells have a white background. Is it possible to change this to gray so that all code cells look the same (except of course for syntax highlighting)? Example:
I would like the first code cell at the top ("pip list") to have a gray background (or rather, the same style as the Python code cell). Otherwise, it's really hard to distinguish between inputs and outputs. Is this possible? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
@cbrnr If you are using RMarkdown, you can replace
with
With Jupyter, it's not possible because Jupyter only allows one kernel per Notebook. |
Beta Was this translation helpful? Give feedback.
-
Also,
will set the formatting to match that of
but without actually executing it |
Beta Was this translation helpful? Give feedback.
Also,
will set the formatting to match that of
but without actually executing it